decode static method

UInt8ListMsg decode(
  1. Object result
)

Implementation

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