Feature.fromJson constructor

Feature.fromJson(
  1. Map json_
)

Implementation

Feature.fromJson(core.Map json_)
    : this(
        maxResults: json_['maxResults'] as core.int?,
        model: json_['model'] as core.String?,
        type: json_['type'] as core.String?,
      );