fromJson method

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

Initialize this object from JSON Map object

Implementation

void fromJson(Map<String, dynamic> json) {
  skip = json['skip'];
  take = json['take'];
  total = json['total'];
}