Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
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
Expand Up @@ -14,6 +14,7 @@ class PurchaseDetails {
required this.productID,
required this.verificationData,
required this.transactionDate,
required this.status,
});

/// A unique identifier of the purchase.
Expand All @@ -37,7 +38,7 @@ class PurchaseDetails {
final String? transactionDate;

/// The status that this [PurchaseDetails] is currently on.
PurchaseStatus? status;
PurchaseStatus status;

/// The error details when the [status] is [PurchaseStatus.error].
///
Expand Down