toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final currentWorkers = this.currentWorkers;
  final resourceInfo = this.resourceInfo;
  final sdkVersion = this.sdkVersion;
  return {
    'currentWorkers': ?currentWorkers,
    'resourceInfo': ?resourceInfo,
    'sdkVersion': ?sdkVersion,
  };
}