FreeFormServiceItem.fromJson constructor
FreeFormServiceItem.fromJson(
- Map json_
Implementation
FreeFormServiceItem.fromJson(core.Map json_)
: this(
category: json_['category'] as core.String?,
label: json_.containsKey('label')
? Label.fromJson(
json_['label'] as core.Map<core.String, core.dynamic>)
: null,
);