registerAppWithIdentifierForOrgApp method

  1. @override
Future<bool?> registerAppWithIdentifierForOrgApp(
  1. String appId,
  2. String bundleId
)
override

Implementation

@override
Future<bool?> registerAppWithIdentifierForOrgApp(
    String appId, String bundleId) async {
  return await methodChannel.invokeMethod<bool>(
      'registerAppWithIdentifierForOrgApp',
      {'appId': appId, 'bundleId': bundleId});
}