boolAttribute method
BoolAttribute
boolAttribute({
- required String key,
- bool missValue = false,
- AttributeTransform<
bool> ? transform,
Implementation
BoolAttribute boolAttribute({required String key, bool missValue = false, AttributeTransform<bool>? transform}) {
return BoolAttribute(key: key, provider: this, missValue: missValue, transform: transform);
}