formattedExpiryDate property

String get formattedExpiryDate

Formatted expiry date.

receipt.formattedExpiryDate; // 'Jan 15, 2026'

Implementation

String get formattedExpiryDate {
  if (expiresAt == null) return 'Never';
  return _formatDate(expiresAt!);
}