Field.double constructor
Creates a new FieldType.float64 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.double({required String name, required String alias}) {
_initializeArcGISEnvironmentIfNeeded();
final coreName = _CString(name);
final coreAlias = _CString(alias);
final handle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Field_createDouble(
coreName.bytes, coreAlias.bytes, errorHandler);
});
return Field._withHandle(handle);
}