pub trait IntoDartExceptPrimitive: IntoDart { }
A trait that is IntoDart and is also not a primitive type. It is used to avoid the ambiguity of whether types such as Vec<i32> should be converted into [Int32List] or [List<int>]
IntoDart
Vec<i32>
Int32List
List<int>