LiveInvestStaticData.fromJson constructor

LiveInvestStaticData.fromJson(
  1. dynamic json
)

Implementation

LiveInvestStaticData.fromJson(dynamic json) {
  _data = json['data'] != null ? DataItem.fromJson(json['data']) : null;
  _success = json['success'];
  _message = json['message'];
}