decode static method

InviteInfo decode(
  1. Object result
)

Implementation

static InviteInfo decode(Object result) {
  result as List<Object?>;
  return InviteInfo(
    callerAccId: result[0]! as String,
    callType: CallType.values[result[1]! as int],
    extraInfo: result[2] as String?,
    channelId: result[3] as String?,
  );
}