boolAttribute method

BoolAttribute boolAttribute({
  1. required String key,
  2. bool missValue = false,
  3. 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);
}