WebDetectionParams.fromJson constructor

WebDetectionParams.fromJson(
  1. Map json_
)

Implementation

WebDetectionParams.fromJson(core.Map json_)
    : this(
        includeGeoResults: json_.containsKey('includeGeoResults')
            ? json_['includeGeoResults'] as core.bool
            : null,
      );