Profile.fromJson constructor

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

Implementation

factory Profile.fromJson(Map<String, dynamic> json) => Profile(
      id: json["id"],
      lenderId: json["lenderId"],
      anchorId: json["anchorId"],
    );