getAppleIDFV static method

Future<String?> getAppleIDFV()

获取iOS IDFV

Implementation

static Future<String?> getAppleIDFV() async {
  String? iosIdfa = await deviceIdentifier.getAppleIDFV();
  return iosIdfa;
}