Field.shortInt constructor
Creates a new FieldType.int16 field object with the following parameters.
Use this method to create a field. The field will be editable and nullable.
Parameters:
name
— Name of the field.alias
— Alias of the field.
Implementation
factory Field.shortInt({
required String name,
required String alias,
}) {
_initializeArcGISEnvironmentIfNeeded();
final coreName = _CString(name);
final coreAlias = _CString(alias);
final handle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Field_createShortInt(
coreName.bytes,
coreAlias.bytes,
errorHandler,
);
});
return Field._withHandle(handle);
}