SavedCardsModel constructor

SavedCardsModel({
  1. bool? success,
  2. int? code,
  3. String? description,
  4. List<CardData>? data,
})

Implementation

SavedCardsModel({
  this.success,
  this.code,
  this.description,
  this.data,
});