GlobalState constructor

GlobalState({
  1. App? app,
  2. Auth? auth,
  3. User? user,
})

Implementation

GlobalState({
  this.app,
  this.auth,
  this.user,
});