diff --git a/src/into_dart.rs b/src/into_dart.rs index 59ffcf7..a299d3b 100644 --- a/src/into_dart.rs +++ b/src/into_dart.rs @@ -403,6 +403,11 @@ where } } +impl IntoDartExceptPrimitive for [T; N] where + T: IntoDartExceptPrimitive +{ +} + impl IntoDart for Option where T: IntoDart,