toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attemptCount = this.attemptCount;
  final failureReason = this.failureReason;
  final instanceSystemId = this.instanceSystemId;
  final name = this.name;
  final state = this.state;
  return {
    'attemptCount': ?attemptCount,
    'failureReason': ?failureReason,
    'instanceSystemId': ?instanceSystemId,
    'name': ?name,
    'state': ?state,
  };
}