rawValue property Null safety

String rawValue

Returns the string representation of the authenticator attestation identifier.

Returns: the string representation of the authenticator attestation identifier.

Implementation

String get rawValue {
  if (defaultTargetPlatform == TargetPlatform.android) {
    return authenticatorAaidAndroid[index];
  } else if (defaultTargetPlatform == TargetPlatform.iOS) {
    return authenticatorAaidiOS[index];
  }

  return '';
}