decode static method

MapMsg decode(
  1. Object result
)

Implementation

static MapMsg decode(Object result) {
  result as List<Object?>;
  return MapMsg(
    map: (result[0] as Map<Object?, Object?>?)?.cast<String?, String?>(),
  );
}