toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final description = this.description;
  final id = this.id;
  final name = this.name;
  final storageVolume = this.storageVolume;
  final type = this.type;
  return {
    'createTime': ?createTime,
    'description': ?description,
    'id': ?id,
    'name': ?name,
    'storageVolume': ?storageVolume,
    'type': ?type,
  };
}