NumberStyle enum

Defines the formatting style for large numbers and currency.

This style determines how digit grouping (commas) is applied to numeric strings within report cells.

Inheritance
Available extensions

Values

international → const NumberStyle

Formats numbers using the International standard (e.g., 1,234,567.00).

Digits are grouped in sets of three from the right.

indian → const NumberStyle

Formats numbers using the Indian numbering system (e.g., 12,34,567.00).

Digits are grouped in a set of three for the hundreds, and sets of two for higher denominations (Lakhs, Crores).

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
name String

Available on Enum, provided by the EnumName extension

The name of the enum value.
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent 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<NumberStyle>
A constant List of the values in this enum, in order of their declaration.