CentralAsia class final
Represents the Central Asia region, which includes the countries of Kazakhstan, Kyrgyzstan, Tajikistan, Turkmenistan, and Uzbekistan.
This class extends SubRegion and sets its name property to "Central Asia".
Example:
import 'package:sealed_countries/sealed_countries.dart';
void main() {
const centralAsia = CentralAsia();
assert(centralAsia.name == 'Central Asia');
}
Constructors
- CentralAsia()
-
Creates a new CentralAsia instance.
const
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
{bool short = true}) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited