emailLog static method

  1. @Deprecated('Use `Logger.emailLog` instead')
Future<bool> emailLog(
  1. String email
)

@deprecated Use Logger instead.

Implementation

@Deprecated('Use `Logger.emailLog` instead')
static Future<bool> emailLog(String email) async {
  print(
      '[⚠️  deprecated] BackgroundGeolocation.emailLog.  Use Logger.emailLog');
  return Logger.emailLog(email);
}