Data.fromJson constructor

Data.fromJson(
  1. dynamic json
)

Implementation

Data.fromJson(dynamic json) {
  _id = json['id'];
  _version = json['version'];
  _type = json['type'];
  _isFource = json['is_fource'];
  _appType = json['app_type'];
  _createdAt = json['created_at'];
}