Profile.fromJson constructor

Profile.fromJson(
  1. String str
)

Implementation

factory Profile.fromJson(String str) => Profile.fromMap(
      json.decode(str) as Map<String, dynamic>,
    );