Maker.fromJson constructor

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

Implementation

Maker.fromJson(Map<String, dynamic> json) {
  user = json['user'];
  profileImgUrl = json['profile_img_url'];
  address = json['address'];
  config = json['config'];
}