BareMetalAdminApiServerArgument.fromJson constructor
BareMetalAdminApiServerArgument.fromJson(
- Map json_
Implementation
BareMetalAdminApiServerArgument.fromJson(core.Map json_)
: this(
argument: json_.containsKey('argument')
? json_['argument'] as core.String
: null,
value:
json_.containsKey('value') ? json_['value'] as core.String : null,
);