fromJson static method

UserProfile fromJson(
  1. Map<String, dynamic> jsonMap
)

Implementation

static UserProfile fromJson(Map<String, dynamic> jsonMap) {
  return serializers.deserializeWith(UserProfile.serializer, jsonMap)!;
}