fieldType property

FieldType fieldType

The field type of the domain.

Implementation

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