fromJson<Type> static method

SearchResult<Type> fromJson<Type>(
  1. Map<String, dynamic> json,
  2. Type typeDeserializeConstructor(
    1. Map<String, dynamic>
    )
)

Implementation

static SearchResult<Type> fromJson<Type>(Map<String,dynamic> json, Type Function(Map<String,dynamic>) typeDeserializeConstructor){
  return SearchResult.fromMap(json, typeDeserializeConstructor);
}