domainStageSelected property

Future<List<String>?> domainStageSelected

Domains that haven't passed Android App Links verification but that the user has associated with an app.

Implementation

static Future<List<String>?> get domainStageSelected async {
  if (!_isSupported) {
    throw UnsupportedError(kUnsupportedPlatformError);
  }

  final dynamic result =
      await _channel.invokeMethod('getDomainStateSelected');
  if (result == null) {
    return null;
  }

  return (result as List).map((item) => item as String).toList();
}