NorthernEurope class final
Represents the Northern Europe region, which includes the countries of Denmark, Finland, Iceland, Norway, Sweden, etc.
This class extends SubRegion and sets its name property to "North Europe".
Example:
import 'package:sealed_countries/sealed_countries.dart';
void main() {
const northernEurope = NorthernEurope();
assert(northernEurope.name == 'Northern Europe');
}
Constructors
- NorthernEurope()
-
Creates a new NorthernEurope 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