country_code property

String? get country_code

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

String? get country_code {
  try {
    if (rawData["country_code"] is String == false) {
      return null;
    }
    return rawData["country_code"] as String;
  } catch (e) {
    return null;
  }
}
set country_code (String? value)

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

set country_code(String? value) {
  rawData["country_code"] = value;
}