instance property

CustomerSession? get instance

Implementation

static CustomerSession? get instance {
  if (_instance == null) {
    throw Exception(
        "Attempted to get instance of CustomerSession without initialization.");
  }
  return _instance;
}