UserProfile.fromJson constructor

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

Implementation

factory UserProfile.fromJson(Map<String, dynamic> json) =>
    UserProfile(profileId: json["profileId"], isDefault: json["isDefault"]);