NEJoinMeetingParams.fromMap constructor

NEJoinMeetingParams.fromMap(
  1. Map map
)

Implementation

NEJoinMeetingParams.fromMap(Map map)
    : this(
        meetingId: map['meetingId'] as String,
        displayName: (map['displayName'] ?? '') as String,
        password: map['password'] as String?,
        tag: map['tag'] as String?,
      );