toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final diskLimitMib = this.diskLimitMib;
  final labels = this.labels;
  final name = this.name;
  final state = this.state;
  final stateDetails = this.stateDetails;
  final target = this.target;
  final type = this.type;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'diskLimitMib': ?diskLimitMib,
    'labels': ?labels,
    'name': ?name,
    'state': ?state,
    'stateDetails': ?stateDetails,
    'target': ?target,
    'type': ?type,
  };
}