toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowDev = this.allowDev;
final allowSuid = this.allowSuid;
final cidr = this.cidr;
final machineId = this.machineId;
final networkId = this.networkId;
final noRootSquash = this.noRootSquash;
final permissions = this.permissions;
return {
'allowDev': ?allowDev,
'allowSuid': ?allowSuid,
'cidr': ?cidr,
'machineId': ?machineId,
'networkId': ?networkId,
'noRootSquash': ?noRootSquash,
'permissions': ?permissions,
};
}