deviceId static method
Provide the unique identifier that Nami uses to identifier this device. Note: this identifier does not persist across app re-installs.
Implementation
static Future<String> deviceId() async {
final String deviceId = await channel.invokeMethod("deviceId");
return deviceId;
}