Flutter – How can I deserialize map from Firebase Firestore?
My FirebaseFirestore looks like the below image My code snipped for deserialization is as below: class StripeProductPlan extends Equatable { final DocumentReference selfRef; final Map<String, String> metaData; final String name; final String? role; final String? taxCode; const StripeProductPlan({ required this.selfRef,…