reverseRectAttributes method

void reverseRectAttributes(
  1. int top,
  2. int left,
  3. int bottom,
  4. int right,
  5. int attribute, {
  6. required bool rectangular,
})

Implementation

void reverseRectAttributes(
  int top,
  int left,
  int bottom,
  int right,
  int attribute, {
  required bool rectangular,
}) {
  _applyAttributeRect(
    top,
    left,
    bottom,
    right,
    (attrs) => attrs ^ _attributeMask(attribute),
    rectangular: rectangular,
  );
}