toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final displayName = this.displayName;
  final name = this.name;
  final pendingTasks = this.pendingTasks;
  final premium = this.premium;
  final state = this.state;
  final timeZone = this.timeZone;
  return {
    'createTime': ?createTime,
    'displayName': ?displayName,
    'name': ?name,
    'pendingTasks': ?pendingTasks,
    'premium': ?premium,
    'state': ?state,
    'timeZone': ?timeZone,
  };
}