sharedInstance static method

Store sharedInstance()

Implementation

static Store sharedInstance() {
  if (_instance == null) {
    _instance =  Store._internal();
  }
  return _instance!;
}