toIntermediateFromFormat method
abstract method
Implementation
@override
@protected MarshalledObject toIntermediateFromFormat(String? encodedPayload)
{
if (encodedPayload != null && encodedPayload.isNotEmpty) {
return new MarshalledObject( json.decode(encodedPayload) );
}
else {
return new MarshalledObject(null); // Null if empty string.
}
}