Skip to content

Commit

Permalink
Format Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LTPhantom committed Apr 18, 2024
1 parent 2931e01 commit 2a9a225
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 4 additions & 2 deletions packages/google_mobile_ads/lib/src/ump/consent_form.dart
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,10 @@ abstract class ConsentForm {
void show(OnConsentFormDismissedListener onConsentFormDismissedListener);

/// Presents a privacy options form.
static Future<void> showPrivacyOptionsForm(OnConsentFormDismissedListener onConsentFormDismissedListener) async {
onConsentFormDismissedListener(await UserMessagingChannel.instance.showPrivacyOptionsForm());
static Future<void> showPrivacyOptionsForm(
OnConsentFormDismissedListener onConsentFormDismissedListener) async {
onConsentFormDismissedListener(
await UserMessagingChannel.instance.showPrivacyOptionsForm());
}

/// Free platform resources associated with this object.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ abstract class ConsentInformation {
enum PrivacyOptionsRequirementStatus {
/// Privacy options entry point is not required.
notRequired,

/// Privacy options entry point is required.
required,

/// Privacy options requirement status is unknown.
unknown;
}

0 comments on commit 2a9a225

Please sign in to comment.