InvestTime.fromJson constructor

InvestTime.fromJson(
  1. dynamic json
)

Implementation

InvestTime.fromJson(dynamic json) {
  _id = json['id'];
  _type = json['type'];
  _name = json['name'];
  _customDate = json['custom_date'];
  _createdAt = json['created_at'];
  _isActive = json['is_active'];
  _isDeleted = json['is_deleted'];
  _sort = json['sort'];
  _isSelected = json['isSelected'];
  _masterUserId = json['master_user_id'];
}