supportedFieldTypes constant

List<Type> const supportedFieldTypes

Supported types in Android SQLite.

On of these types will be returned from NativeCursorGetBatch.getType.

Represents these static Cursor fields:

  • FIELD_TYPE_NULL
  • FIELD_TYPE_INTEGER
  • FIELD_TYPE_FLOAT
  • FIELD_TYPE_STRING
  • FIELD_TYPE_BLOB

Implementation

static const supportedFieldTypes = <Type>[
  Null,
  int,
  double,
  String,
  Uint8List,
];