HMSPeer.fromMap constructor Null safety

HMSPeer.fromMap(
  1. Map map
)

Implementation

factory HMSPeer.fromMap(Map map) {
  HMSRole? role;
  if (map['role'] != null) role = HMSRole.fromMap(map['role']);
  return HMSPeer(
    peerId: map['peer_id'],
    name: map['name'],
    isLocal: map['is_local'],
    role: role,
    customerDescription: map['customer_description'],
    customerUserId: map['customer_user_id'],
  );
}