copyWith method

GetCountry copyWith({
  1. String? countryCode,
})

Implementation

GetCountry copyWith({String? countryCode}) =>
    GetCountry(countryCode: countryCode ?? this.countryCode);