FreeFormServiceItem.fromJson constructor

FreeFormServiceItem.fromJson(
  1. Map json_
)

Implementation

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