MeetMessage constructor

MeetMessage({
  1. String? title,
  2. required int scheduledDateTime,
  3. required String? link,
})

Initializes a new instance of the MeetMessage class.

Implementation

MeetMessage(
    {this.title, required this.scheduledDateTime, required this.link});