encodeInput method
encode the input of the channel from bytes
Implementation
@override
MethodCall encodeInput(Uint8List data) {
String js = utf8.decode(data);
return MethodCall.fromJson(js);
}
encode the input of the channel from bytes
@override
MethodCall encodeInput(Uint8List data) {
String js = utf8.decode(data);
return MethodCall.fromJson(js);
}