GetAdjustId method

  1. @override
Future<String?> GetAdjustId()
override

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;
}