toJson method

Map<String, dynamic> toJson()

Implementation

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