toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowDev = this.allowDev;
  final allowSuid = this.allowSuid;
  final allowedClientsCidr = this.allowedClientsCidr;
  final mountPermissions = this.mountPermissions;
  final network = this.network;
  final nfsPath = this.nfsPath;
  final noRootSquash = this.noRootSquash;
  final shareIp = this.shareIp;
  return {
    'allowDev': ?allowDev,
    'allowSuid': ?allowSuid,
    'allowedClientsCidr': ?allowedClientsCidr,
    'mountPermissions': ?mountPermissions,
    'network': ?network,
    'nfsPath': ?nfsPath,
    'noRootSquash': ?noRootSquash,
    'shareIp': ?shareIp,
  };
}