storeSubscriptionPaymentDate static method

dynamic storeSubscriptionPaymentDate(
  1. Datum package,
  2. SubscriptionType type
)

Implementation

static storeSubscriptionPaymentDate(Datum package, SubscriptionType type) async {
  Requests.box.write('selected_package', package.toJson());
  Requests.box.write('type', type.toString());
  await Requests.box.save();
}