AppContext constructor

const AppContext({
  1. Map<String, dynamic> session = const {},
  2. Map<String, dynamic> execution = const {},
  3. Map<String, dynamic> scopes = const {},
  4. String? installationId,
  5. Map<String, dynamic>? app,
  6. Map<String, dynamic>? device,
  7. Map<String, dynamic>? user,
})

Implementation

const AppContext({
  this.session = const {},
  this.execution = const {},
  this.scopes = const {},
  this.installationId,
  this.app,
  this.device,
  this.user,
});