GetAdjustId method
Implementation
@override
Future<String?> GetAdjustId() async {
try {
return await methodChannel.invokeMethod<String>('GetAdjustId');
} on PlatformException catch (e) {
print("Failed to call GetAdjustId: '${e.message}'.");
}
return null;
}