getInstallTrackingId method

  1. @Deprecated('Use getDeviceId instead.')
Future<String> getInstallTrackingId()

Gets the install tracking id.

Implementation

@Deprecated('Use getDeviceId instead.')
Future<String> getInstallTrackingId() {
  return _channel
      .invokeMethod('getDeviceId')
      .then<String>((dynamic result) => result);
}