SearchSearchInformation.fromJson constructor

SearchSearchInformation.fromJson(
  1. Map json_
)

Implementation

SearchSearchInformation.fromJson(core.Map json_)
  : this(
      formattedSearchTime: json_['formattedSearchTime'] as core.String?,
      formattedTotalResults: json_['formattedTotalResults'] as core.String?,
      searchTime: (json_['searchTime'] as core.num?)?.toDouble(),
      totalResults: json_['totalResults'] as core.String?,
    );