toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final completeTime = this.completeTime;
  final createTime = this.createTime;
  final etag = this.etag;
  final name = this.name;
  final state = this.state;
  final stateMessage = this.stateMessage;
  final targetPvc = this.targetPvc;
  final uid = this.uid;
  final updateTime = this.updateTime;
  final volumeBackup = this.volumeBackup;
  final volumeHandle = this.volumeHandle;
  final volumeType = this.volumeType;
  return {
    'completeTime': ?completeTime,
    'createTime': ?createTime,
    'etag': ?etag,
    'name': ?name,
    'state': ?state,
    'stateMessage': ?stateMessage,
    'targetPvc': ?targetPvc,
    'uid': ?uid,
    'updateTime': ?updateTime,
    'volumeBackup': ?volumeBackup,
    'volumeHandle': ?volumeHandle,
    'volumeType': ?volumeType,
  };
}