NotificationModel constructor

NotificationModel({
  1. int totalSize = 0,
  2. int limit = 0,
  3. int offset = 0,
  4. List<Notifications>? notifications,
})

Implementation

NotificationModel(
    {this.totalSize = 0,
    this.limit = 0,
    this.offset = 0,
    this.notifications});