callIosScreenShot method

  1. @protected
dynamic callIosScreenShot(
  1. bool shot
)

Implementation

@protected
callIosScreenShot(bool shot) {
  log("callIosScreenShot >>> shot:$shot");
  if (_isIosScreenShot != shot) {
    _isIosScreenShot = shot;
    _iosScreenShotListener?.call(shot);
  }
}