UserOfferAppleSubscription.fromMap constructor
Implementation
factory UserOfferAppleSubscription.fromMap(Map<String, dynamic> m) {
return UserOfferAppleSubscription(
isActive: (m['isActive'] as bool?) ?? false,
expiresAt: m['expiresAt'] as String?,
statusCode: (m['statusCode'] as int?) ?? 0,
autoRenewEnabled: (m['autoRenewEnabled'] as bool?) ?? false,
);
}