type property

FieldType type

The field's data type.

Implementation

FieldType get type {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Field_getFieldType(_handle, errorHandler);
  });
  return FieldType._fromCoreValue(coreValue);
}