isFront method
get front or back
Implementation
bool isFront() {
if (_flip == null || _isFront == null) {
_printNullError();
return true;
} else {
return _isFront!.call();
}
}
get front or back
bool isFront() {
if (_flip == null || _isFront == null) {
_printNullError();
return true;
} else {
return _isFront!.call();
}
}