instance property

Access the singleton instance of PaymentMethodStore.

Implementation

static PaymentMethodStore get instance {
  _instance ??= PaymentMethodStore();
  return _instance!;
}