CountryBean constructor

CountryBean({
  1. int? id,
  2. String? name,
  3. int? callCode,
  4. String? cncode,
  5. String? createdAt,
  6. String? updatedAt,
  7. String? text,
})

Implementation

CountryBean(
    {this.id,
    this.name,
    this.callCode,
    this.cncode,
    this.createdAt,
    this.updatedAt,
    this.text});