pub trait IntoDart {
    fn into_dart(self) -> DartCObject;
}
Expand description

A trait to convert between Rust types and Dart Types that could then be sent to the isolate

see: crate::Isolate::post

Required Methods

Consumes Self and Performs the conversion.

Implementations on Foreign Types

Implementors