toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bootLun = this.bootLun;
  final expireTime = this.expireTime;
  final id = this.id;
  final instances = this.instances;
  final multiprotocolType = this.multiprotocolType;
  final name = this.name;
  final shareable = this.shareable;
  final sizeGb = this.sizeGb;
  final state = this.state;
  final storageType = this.storageType;
  final storageVolume = this.storageVolume;
  final wwid = this.wwid;
  return {
    'bootLun': ?bootLun,
    'expireTime': ?expireTime,
    'id': ?id,
    'instances': ?instances,
    'multiprotocolType': ?multiprotocolType,
    'name': ?name,
    'shareable': ?shareable,
    'sizeGb': ?sizeGb,
    'state': ?state,
    'storageType': ?storageType,
    'storageVolume': ?storageVolume,
    'wwid': ?wwid,
  };
}