userProfileFromJson function

UserProfile userProfileFromJson(
  1. String str
)

Implementation

UserProfile userProfileFromJson(final String str) =>
    UserProfile.fromJson(json.decode(str) as Map<String, dynamic>);