toJson method

Map<String, dynamic> toJson()

Implementation

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