getCustomExtraData method

Future getCustomExtraData()

Android 返回 String?类型 IOS 返回 Map 类型

Implementation

Future<dynamic> getCustomExtraData() async {
  try {
    return await BeiziSdk.channel
        .invokeMethod(BeiZiSdkMethodNames.splashGetCustomExtData);
  } on PlatformException catch (e) {
    throw Exception('调用getCustomExtraData失败: ${e.message}');
  }
}