toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final endTime = this.endTime;
  final flowVersion = this.flowVersion;
  final name = this.name;
  final result = this.result;
  final startTime = this.startTime;
  final state = this.state;
  return {
    'endTime': ?endTime,
    'flowVersion': ?flowVersion,
    'name': ?name,
    'result': ?result,
    'startTime': ?startTime,
    'state': ?state,
  };
}