buildOtpAuthMigrationUri method

  1. @override
Future<String> buildOtpAuthMigrationUri({
  1. required String accountsJson,
  2. int version = 1,
  3. int batchSize = 1,
  4. int batchIndex = 0,
  5. int batchId = 0,
})
override

Implementation

@override
Future<String> buildOtpAuthMigrationUri({
  required String accountsJson,
  int version = 1,
  int batchSize = 1,
  int batchIndex = 0,
  int batchId = 0,
}) async {
  return await methodChannel
          .invokeMethod<String>('buildOtpAuthMigrationUri', {
            'accountsJson': accountsJson,
            'version': version,
            'batchSize': batchSize,
            'batchIndex': batchIndex,
            'batchId': batchId,
          }) ??
      '';
}