NativeCommand constructor

const NativeCommand({
  1. required String service,
  2. required String command,
  3. String? windowId,
  4. Map<String, dynamic> params = const {},
})

Implementation

const NativeCommand({
  required this.service,
  required this.command,
  this.windowId,
  this.params = const {},
});