profileFromJson function

List<Profile> profileFromJson(
  1. String str
)

Implementation

List<Profile> profileFromJson(String str) =>
    List<Profile>.from(json.decode(str).map((x) => Profile.fromJson(x)));