info method

Future<void> info(
  1. String? message, {
  2. bool takeScreenshot = false,
  3. dynamic coordinates,
  4. dynamic data,
})

Implementation

Future<void> info(String? message, {bool takeScreenshot = false, dynamic coordinates, dynamic data}) async {
  dynamic response = await logEvent('INFO', message, coordinates, data);
  if (takeScreenshot == true || _testDevelopment) {
    await _attachScreenshot(this, response);
  }
}