CreateZainboxResponse.fromJson constructor

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

Implementation

CreateZainboxResponse.fromJson(Map<String, dynamic> json) {
  status = json['status'];
  description = json['description'];
  data = (json['data'] != null ? Data.fromJson(json['data']) : null)!;
}