HMSLocalPeer.fromMap constructor Null safety

HMSLocalPeer.fromMap(
  1. Map map
)

Implementation

factory HMSLocalPeer.fromMap(Map map) {
  return HMSLocalPeer(
    peerId: map['peer_id'],
    name: map['name'],
    isLocal: map['is_local'],
    role: HMSRole.fromMap(map['role']),
    customerDescription: map['customer_description'],
    customerUserId: map['customer_user_id'],
  );
}