WebLabel.fromJson constructor
WebLabel.fromJson(
- Map json_
Implementation
WebLabel.fromJson(core.Map json_)
: this(
label:
json_.containsKey('label') ? json_['label'] as core.String : null,
languageCode: json_.containsKey('languageCode')
? json_['languageCode'] as core.String
: null,
);