marshalDartValue static method

MarshalledObject marshalDartValue(
  1. Object? value
)

Helper method for serialisaing Dart objects

Implementation

static MarshalledObject marshalDartValue(Object? value)
{
  return new MarshalledObject.fromDartObject(value);
}