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