MonthApperance enum Null safety
Determine what pattern will be used for displaying YearMonth
string
Constructors
- MonthApperance()
-
const
Values
- fullname → const MonthApperance
-
Display month as word and year
const MonthApperance(0)
- short_name → const MonthApperance
-
Display short-formed month and year
const MonthApperance(1)
- numeric → const MonthApperance
-
Display month with number and year
const MonthApperance(2)
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
MonthApperance> -
A constant List of the values in this enum, in order of their declaration.
[fullname, short_name, numeric]