decode static method

JoinChannelOptions decode(
  1. Object result
)

Implementation

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