PreservedStatePreservedDisk.fromJson constructor
PreservedStatePreservedDisk.fromJson(
- Map json_
Implementation
PreservedStatePreservedDisk.fromJson(core.Map json_)
: this(
autoDelete: json_.containsKey('autoDelete')
? json_['autoDelete'] as core.String
: null,
mode: json_.containsKey('mode') ? json_['mode'] as core.String : null,
source: json_.containsKey('source')
? json_['source'] as core.String
: null,
);