PieceType class Null safety
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
toLowerCase(
) → String -
toString(
) → String -
A string representation of this object. [...]
override
-
toUpperCase(
) → String
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited
Constants
- BISHOP → const PieceType
-
const PieceType._internal(2, 'b')
- KING → const PieceType
-
const PieceType._internal(5, 'k')
- KNIGHT → const PieceType
-
const PieceType._internal(1, 'n')
- PAWN → const PieceType
-
const PieceType._internal(0, 'p')
- QUEEN → const PieceType
-
const PieceType._internal(4, 'q')
- ROOK → const PieceType
-
const PieceType._internal(3, 'r')