getInstallTrackingId method
Gets the install tracking id.
Implementation
@Deprecated('Use getDeviceId instead.')
Future<String> getInstallTrackingId() {
return _channel
.invokeMethod('getDeviceId')
.then<String>((dynamic result) => result);
}