BareMetalApiServerArgument.fromJson constructor
BareMetalApiServerArgument.fromJson(
- Map json_
Implementation
BareMetalApiServerArgument.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,
);