TypeEsquema enum
Corresponde a key 'type' en el esquema de una coleccion
Values
- object → const TypeEsquema
-
const TypeEsquema('object', 'Objeto', <String, dynamic>{}, false) - array → const TypeEsquema
-
const TypeEsquema('array', 'Lista', [], true) - string → const TypeEsquema
-
const TypeEsquema('string', 'Texto', '', true) - jsonString → const TypeEsquema
-
const TypeEsquema('jsonString', 'Json', '{}', true) - number → const TypeEsquema
-
const TypeEsquema('number', 'Numero', 0, true) - date → const TypeEsquema
-
const TypeEsquema('date', 'Fecha', '', true) - boolean → const TypeEsquema
-
const TypeEsquema('boolean', 'Booleano', true, true) - arrayObjects → const TypeEsquema
-
const TypeEsquema('arrayObjects', 'Lista de objetos', [], false) - autoGenerate → const TypeEsquema
-
const TypeEsquema('autoGenerate', 'Auto generado', '', false) - label → const TypeEsquema
-
const TypeEsquema('label', 'Etiqueta', '', true) - unknown → const TypeEsquema
-
const TypeEsquema('unknown', 'Desconocido', '', false)
Properties
- emitStreamValue → bool
-
final
- etiqueta → String
-
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
final
- 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
- valorInicial → dynamic
-
final
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
Static Methods
-
fromString(
String valor) → TypeEsquema -
getEtiqueta(
String name) → String
Constants
-
values
→ const List<
TypeEsquema> - A constant List of the values in this enum, in order of their declaration.