getCustomId static method

Future<String> getCustomId()

Get custom id

Implementation

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