Context constructor

Context(
  1. ContextApp app,
  2. ContextDevice device,
  3. ContextLibrary library,
  4. String locale,
  5. ContextNetwork network,
  6. ContextOS os,
  7. ContextScreen screen,
  8. String timezone,
  9. UserTraits traits, {
  10. String? instanceId,
  11. Map<String, dynamic>? custom,
})

Implementation

Context(this.app, this.device, this.library, this.locale, this.network,
    this.os, this.screen, this.timezone, this.traits,
    {this.instanceId, Map<String, dynamic>? custom})
    : super(custom: custom);