Context constructor

Context({
  1. required String domain,
  2. required String action,
})

Creates a new instance of Context.

The domain and action parameters are required.

Implementation

Context({required this.domain, required this.action});