toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final memoryMbSeconds = this.memoryMbSeconds;
  final name = this.name;
  final progress = this.progress;
  final state = this.state;
  final trackingUrl = this.trackingUrl;
  final vcoreSeconds = this.vcoreSeconds;
  return {
    'memoryMbSeconds': ?memoryMbSeconds,
    'name': ?name,
    'progress': ?progress,
    'state': ?state,
    'trackingUrl': ?trackingUrl,
    'vcoreSeconds': ?vcoreSeconds,
  };
}