toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final mountPath = this.mountPath;
  final name = this.name;
  final readOnly = this.readOnly;
  final subPath = this.subPath;
  return {
    'mountPath': ?mountPath,
    'name': ?name,
    'readOnly': ?readOnly,
    'subPath': ?subPath,
  };
}