getUserEmail static method

Future<String> getUserEmail()

Get email

Implementation

static Future<String> getUserEmail() async {
  if(!Platform.isAndroid) return "";
  return await _channel.invokeMethod("Pushe.getUserEmail") ?? "";
}