NfsDatastore.fromJson constructor
NfsDatastore.fromJson(
- Map json_
Implementation
NfsDatastore.fromJson(core.Map json_)
: this(
googleFileService: json_.containsKey('googleFileService')
? GoogleFileService.fromJson(
json_['googleFileService']
as core.Map<core.String, core.dynamic>,
)
: null,
googleVmwareFileService: json_.containsKey('googleVmwareFileService')
? GoogleVmwareFileService.fromJson(
json_['googleVmwareFileService']
as core.Map<core.String, core.dynamic>,
)
: null,
thirdPartyFileService: json_.containsKey('thirdPartyFileService')
? ThirdPartyFileService.fromJson(
json_['thirdPartyFileService']
as core.Map<core.String, core.dynamic>,
)
: null,
);