$FeedField.fromJson constructor

$FeedField.fromJson(
  1. Map json_
)

Implementation

$FeedField.fromJson(core.Map json_)
  : this(
      defaultValue: json_['defaultValue'] as core.String?,
      filterable: json_['filterable'] as core.bool?,
      id: json_['id'] as core.int?,
      name: json_['name'] as core.String?,
      renderable: json_['renderable'] as core.bool?,
      required: json_['required'] as core.bool?,
      type: json_['type'] as core.String?,
    );