allowInvertHorizontal property

bool get allowInvertHorizontal

Implementation

bool get allowInvertHorizontal => _allowInvertHorizontal;
  1. @override
set allowInvertHorizontal (bool value)
override

Implementation

@override
set allowInvertHorizontal(bool value) {
  if (_allowInvertHorizontal != value) {
    setState(() {
      _allowInvertHorizontal = value;
    });
  }
}