tester property

WidgetTester get tester

Implementation

WidgetTester get tester {
  var tester = _tester;
  if (tester == null) {
    throw Exception('tester is only available when the test is run');
  }
  return tester;
}