decode static method
Implementation
static NEGroupCallMember decode(Object result) {
result as List<Object?>;
return NEGroupCallMember(
accId: result[0]! as String,
rtcUid: result[1] as int?,
state: result[2] as int?,
action: result[3] as String?,
reason: result[4] as String?,
);
}