TomlIntegerFormat class

A TOML integer can be formatted with one of four bases.

Properties

base int
The base of an integer of this format.
final
hashCode int
The hash code for this object.
no setterinherited
prefix String
Prefix for integers of this format.
final
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

bin → const TomlIntegerFormat
Format of a binary (base 2) integer.
dec → const TomlIntegerFormat
Format of a decimal (base 10) integer.
hex → const TomlIntegerFormat
Format of a hexadecimal (base 16) integer.
oct → const TomlIntegerFormat
Format of an octal (base 8) integer.