Setting.fromJson constructor

Setting.fromJson(
  1. Map json_
)

Implementation

Setting.fromJson(core.Map json_)
  : this(
      type: json_['type'] as core.String?,
      value:
          json_.containsKey('value')
              ? json_['value'] as core.Map<core.String, core.dynamic>
              : null,
    );