screenshot static method

Future<void> screenshot()

Implementation

static Future<void> screenshot() async{
  if(!isSupported)
  {
    return;
  }
  return screenshotOf(_currentScreenContext, _currentScreenTag);
}