RemoteCommand constructor

const RemoteCommand({
  1. required String id,
  2. required RemoteCommandType type,
  3. JsonMap? payload,
})

Implementation

const RemoteCommand({
  required this.id,
  required this.type,
  this.payload,
});