decode static method
Implementation
static JoinChannelOptions decode(Object result) {
result as List<Object?>;
return JoinChannelOptions(
customInfo: result[0] as String?,
permissionKey: result[1] as String?,
);
}
static JoinChannelOptions decode(Object result) {
result as List<Object?>;
return JoinChannelOptions(
customInfo: result[0] as String?,
permissionKey: result[1] as String?,
);
}