FreeFormServiceItem.fromJson constructor

FreeFormServiceItem.fromJson(
  1. 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,
    );