RoomList class

Represents a list of rooms in the Microsoft Graph API.

This class encapsulates various properties of a room list, such as its id, email address, display name, address, geo-coordinates, and more.

Constructors

RoomList({String? id, String? displayName, Address? address, String? emailAddress, GeoCoordinates? geocoordinates, String? phone})
Creates a new instance of RoomList.
RoomList.fromJson(Map<String, dynamic> json)
Creates a new instance of RoomList from a JSON object.
factory

Properties

address Address?
The physical address of the room list.
final
displayName String?
The display name of the room list.
final
emailAddress String?
The email address of the room list.
final
geocoordinates GeoCoordinates?
The geographical coordinates of the room list.
final
hashCode int
The hash code for this object.
no setterinherited
id String?
The unique identifier of the room list.
final
phone String?
The phone number of the room list.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

copyWith({String? id, String? displayName, Address? address, String? emailAddress, GeoCoordinates? geocoordinates, String? phone}) RoomList
Creates a copy of this RoomList but with the given fields replaced with the new values.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited