alpha property

int get alpha

Implementation

int get alpha {
  _alpha ??= ui.Color.getAlphaFromOpacity(renderStyle.opacity);
  return _alpha ?? ui.Color.getAlphaFromOpacity(1.0);
}
set alpha (int? value)

Implementation

set alpha(int? value) {
  _alpha = value;
}