decode static method
Implementation
static UInt8ListMsg decode(Object result) {
result as List<Object?>;
return UInt8ListMsg(
value: result[0] as Uint8List?,
);
}
static UInt8ListMsg decode(Object result) {
result as List<Object?>;
return UInt8ListMsg(
value: result[0] as Uint8List?,
);
}