CountryListResponseModel constructor
CountryListResponseModel({
- List<
Countrylist> ? data, - num? success,
- num? totalRecords,
- String? message,
Implementation
CountryListResponseModel({
List<Countrylist>? data,
num? success,
num? totalRecords,
String? message,}){
_data = data;
_success = success;
_totalRecords = totalRecords;
_message = message;
}