toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final eventTime = this.eventTime;
  final taskExecution = this.taskExecution;
  final taskState = this.taskState;
  final type = this.type;
  return {
    'description': ?description,
    'eventTime': ?eventTime,
    'taskExecution': ?taskExecution,
    'taskState': ?taskState,
    'type': ?type,
  };
}