BooleanField class
BooleanField is for a string output of Y/N
- Implementers
Constructors
- BooleanField({int length: 1, bool defaultValue })
Properties
- autoTruncate ↔ bool
-
read / write, inherited
- hashCode → int
-
The hash code for this object.
read-only, inherited
- length ↔ int
-
read / write, inherited
- rawVal ↔ dynamic
-
read / write, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- value ↔ dynamic
-
Each subclass will define their own implementation
Set value's job is to set rawVal equal to the appropriate
"dart typed" object. I.E. a string / int / bool / etc...
read / write, inherited
Methods
-
populateFromString(
String val) → bool -
toRecord(
dynamic val) → String -
toRecord
will be overridden in each subclass [...] -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
populateFromObj(
dynamic val) → dynamic -
inherited
-
toString(
) → String -
toString turns the value to a string. Don't override this directly
in subclasses. Instead - use
toRecord
.inherited
Operators
-
operator ==(
dynamic other) → bool -
The equality operator.
inherited