Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

rename CashAppPay to CashApp to fix #1639 #1691

Merged
merged 1 commit into from
Mar 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// coverage:ignore-file

Check warning on line 1 in packages/stripe_platform_interface/lib/src/models/ach_params.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

Filename: packages/stripe_platform_interface/lib/src/models/ach_params.freezed.dart

"freezed" in the filename is a typo. Did you mean "freezes"?
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
Expand All @@ -12,7 +12,7 @@
T _$identity<T>(T value) => value;

final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');

Check warning on line 15 in packages/stripe_platform_interface/lib/src/models/ach_params.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

freezed

"freezed" is a typo. Did you mean "freezes"?

CollectBankAccountParams _$CollectBankAccountParamsFromJson(
Map<String, dynamic> json) {
Expand Down Expand Up @@ -160,7 +160,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CollectBankAccountParamsImpl &&
Expand Down Expand Up @@ -362,7 +362,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$VerifyMicroDepositsParamsImpl &&
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// coverage:ignore-file

Check warning on line 1 in packages/stripe_platform_interface/lib/src/models/address.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

Filename: packages/stripe_platform_interface/lib/src/models/address.freezed.dart

"freezed" in the filename is a typo. Did you mean "freezes"?
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
Expand All @@ -12,7 +12,7 @@
T _$identity<T>(T value) => value;

final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');

Check warning on line 15 in packages/stripe_platform_interface/lib/src/models/address.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

freezed

"freezed" is a typo. Did you mean "freezes"?

AddressDetails _$AddressDetailsFromJson(Map<String, dynamic> json) {
return _AddressDetails.fromJson(json);
Expand Down Expand Up @@ -165,7 +165,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$AddressDetailsImpl &&
Expand Down Expand Up @@ -422,7 +422,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$AddressImpl &&
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// coverage:ignore-file

Check warning on line 1 in packages/stripe_platform_interface/lib/src/models/app_info.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

Filename: packages/stripe_platform_interface/lib/src/models/app_info.freezed.dart

"freezed" in the filename is a typo. Did you mean "freezes"?
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
Expand All @@ -12,7 +12,7 @@
T _$identity<T>(T value) => value;

final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');

Check warning on line 15 in packages/stripe_platform_interface/lib/src/models/app_info.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

freezed

"freezed" is a typo. Did you mean "freezes"?

AppInfo _$AppInfoFromJson(Map<String, dynamic> json) {
return _AppInfo.fromJson(json);
Expand Down Expand Up @@ -148,7 +148,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$AppInfoImpl &&
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// coverage:ignore-file

Check warning on line 1 in packages/stripe_platform_interface/lib/src/models/apple_pay.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

Filename: packages/stripe_platform_interface/lib/src/models/apple_pay.freezed.dart

"freezed" in the filename is a typo. Did you mean "freezes"?
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
Expand All @@ -12,7 +12,7 @@
T _$identity<T>(T value) => value;

final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');

Check warning on line 15 in packages/stripe_platform_interface/lib/src/models/apple_pay.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

freezed

"freezed" is a typo. Did you mean "freezes"?

ApplePayShippingMethod _$ApplePayShippingMethodFromJson(
Map<String, dynamic> json) {
Expand Down Expand Up @@ -258,7 +258,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$ApplePayShippingMethodImpl &&
Expand Down Expand Up @@ -568,7 +568,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$ImmediateCartSummaryItemImpl &&
Expand Down Expand Up @@ -793,7 +793,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$DeferredSummaryItemImpl &&
Expand Down Expand Up @@ -1055,7 +1055,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$RecurringCartSummaryItemImpl &&
Expand Down Expand Up @@ -1499,7 +1499,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$ApplePayPresentParamsImpl &&
Expand Down Expand Up @@ -1722,7 +1722,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$ApplePayErrorAddressFieldImpl &&
Expand Down Expand Up @@ -1954,7 +1954,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$ApplePayContactNameImpl &&
Expand Down Expand Up @@ -2239,7 +2239,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$ApplePayPostalAddressImpl &&
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// coverage:ignore-file

Check warning on line 1 in packages/stripe_platform_interface/lib/src/models/aubecs_form.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

Filename: packages/stripe_platform_interface/lib/src/models/aubecs_form.freezed.dart

"aubecs" in the filename is a typo. Did you mean "because"?

Check warning on line 1 in packages/stripe_platform_interface/lib/src/models/aubecs_form.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

Filename: packages/stripe_platform_interface/lib/src/models/aubecs_form.freezed.dart

"freezed" in the filename is a typo. Did you mean "freezes"?
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
Expand All @@ -12,7 +12,7 @@
T _$identity<T>(T value) => value;

final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');

Check warning on line 15 in packages/stripe_platform_interface/lib/src/models/aubecs_form.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

freezed

"freezed" is a typo. Did you mean "freezes"?

AubecsFormStyle _$AubecsFormStyleFromJson(Map<String, dynamic> json) {
return _AubecsFormStyle.fromJson(json);
Expand Down Expand Up @@ -268,7 +268,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$AubecsFormStyleImpl &&
Expand Down Expand Up @@ -531,7 +531,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$AubecsFormInputDetailsImpl &&
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// coverage:ignore-file

Check warning on line 1 in packages/stripe_platform_interface/lib/src/models/card_details.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

Filename: packages/stripe_platform_interface/lib/src/models/card_details.freezed.dart

"freezed" in the filename is a typo. Did you mean "freezes"?
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
Expand All @@ -12,7 +12,7 @@
T _$identity<T>(T value) => value;

final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');

Check warning on line 15 in packages/stripe_platform_interface/lib/src/models/card_details.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

freezed

"freezed" is a typo. Did you mean "freezes"?

CardDetails _$CardDetailsFromJson(Map<String, dynamic> json) {
return _CardDetailsConstructor.fromJson(json);
Expand Down Expand Up @@ -157,7 +157,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CardDetailsConstructorImpl &&
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// coverage:ignore-file

Check warning on line 1 in packages/stripe_platform_interface/lib/src/models/card_field_input.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

Filename: packages/stripe_platform_interface/lib/src/models/card_field_input.freezed.dart

"freezed" in the filename is a typo. Did you mean "freezes"?
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
Expand All @@ -12,7 +12,7 @@
T _$identity<T>(T value) => value;

final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');

Check warning on line 15 in packages/stripe_platform_interface/lib/src/models/card_field_input.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

freezed

"freezed" is a typo. Did you mean "freezes"?

CardStyle _$CardStyleFromJson(Map<String, dynamic> json) {
return _CardStyleConstructor.fromJson(json);
Expand Down Expand Up @@ -307,7 +307,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CardStyleConstructorImpl &&
Expand Down Expand Up @@ -707,7 +707,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CardFormStyleConstructorImpl &&
Expand Down Expand Up @@ -979,7 +979,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CardPlaceholderConstructorImpl &&
Expand Down Expand Up @@ -1359,7 +1359,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CardFieldInputDetailsImpl &&
Expand Down Expand Up @@ -1582,7 +1582,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CardFieldFocusNameImpl &&
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// coverage:ignore-file

Check warning on line 1 in packages/stripe_platform_interface/lib/src/models/create_token_data.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

Filename: packages/stripe_platform_interface/lib/src/models/create_token_data.freezed.dart

"freezed" in the filename is a typo. Did you mean "freezes"?
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
Expand All @@ -12,7 +12,7 @@
T _$identity<T>(T value) => value;

final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');

Check warning on line 15 in packages/stripe_platform_interface/lib/src/models/create_token_data.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

freezed

"freezed" is a typo. Did you mean "freezes"?

CreateTokenParams _$CreateTokenParamsFromJson(Map<String, dynamic> json) {
switch (json['runtimeType']) {
Expand Down Expand Up @@ -200,7 +200,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CreateTokenParamsLegacyImpl &&
Expand Down Expand Up @@ -390,7 +390,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CreateTokenParamsCardImpl &&
Expand Down Expand Up @@ -574,7 +574,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CreateTokenParamsBankAccountImpl &&
Expand Down Expand Up @@ -755,7 +755,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CreateTokenParamsPIIImpl &&
Expand Down Expand Up @@ -1040,7 +1040,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CardTokenParamsImpl &&
Expand Down Expand Up @@ -1220,7 +1220,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$PIITokenParamsImpl &&
Expand Down Expand Up @@ -1499,7 +1499,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$BankAccountTokenParamsImpl &&
Expand Down Expand Up @@ -1820,7 +1820,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$TokenDataImpl &&
Expand Down Expand Up @@ -2196,7 +2196,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CardDataImpl &&
Expand Down Expand Up @@ -2582,7 +2582,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$BankAccountImpl &&
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// coverage:ignore-file

Check warning on line 1 in packages/stripe_platform_interface/lib/src/models/customer_sheet.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

Filename: packages/stripe_platform_interface/lib/src/models/customer_sheet.freezed.dart

"freezed" in the filename is a typo. Did you mean "freezes"?
// GENERATED CODE - DO NOT MODIFY BY HAND
// ignore_for_file: type=lint
// ignore_for_file: unused_element, deprecated_member_use, deprecated_member_use_from_same_package, use_function_type_syntax_for_parameters, unnecessary_const, avoid_init_to_null, invalid_override_different_default_values_named, prefer_expression_function_bodies, annotate_overrides, invalid_annotation_target, unnecessary_question_mark
Expand All @@ -12,7 +12,7 @@
T _$identity<T>(T value) => value;

final _privateConstructorUsedError = UnsupportedError(
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#custom-getters-and-methods');
'It seems like you constructed your class using `MyClass._()`. This constructor is only meant to be used by freezed and you are not supposed to need it nor use it.\nPlease check the documentation here for more information: https://github.com/rrousselGit/freezed#adding-getters-and-methods-to-our-models');

Check warning on line 15 in packages/stripe_platform_interface/lib/src/models/customer_sheet.freezed.dart

View workflow job for this annotation

GitHub Actions / Typo CI

freezed

"freezed" is a typo. Did you mean "freezes"?

CustomerSheetInitParams _$CustomerSheetInitParamsFromJson(
Map<String, dynamic> json) {
Expand Down Expand Up @@ -474,7 +474,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CustomerSheetInitParamsImpl &&
Expand Down Expand Up @@ -791,7 +791,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CustomerSheetPresentParamsImpl &&
Expand Down Expand Up @@ -1041,7 +1041,7 @@
}

@override
bool operator ==(dynamic other) {
bool operator ==(Object other) {
return identical(this, other) ||
(other.runtimeType == runtimeType &&
other is _$CustomerSheetResultImpl &&
Expand Down
Loading
Loading