toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final customerServiceAccount = this.customerServiceAccount;
  final labels = this.labels;
  final name = this.name;
  final state = this.state;
  final storageDirectoryMappings = this.storageDirectoryMappings;
  final updateTime = this.updateTime;
  final userCredentials = this.userCredentials;
  final username = this.username;
  return {
    'createTime': ?createTime,
    'customerServiceAccount': ?customerServiceAccount,
    'labels': ?labels,
    'name': ?name,
    'state': ?state,
    'storageDirectoryMappings': ?storageDirectoryMappings,
    'updateTime': ?updateTime,
    'userCredentials': ?userCredentials,
    'username': ?username,
  };
}