info method
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);
}
}