Command constructor

const Command({
  1. RiverpodCraftOptions options = RiverpodCraftOptions.empty,
  2. required String name,
  3. required List<ParameterInfo> params,
  4. required ConcurrencyType concurrency,
  5. required String dataType,
  6. bool isKeepAlive = false,
})

Implementation

const Command({
  this.options = RiverpodCraftOptions.empty,
  required this.name,
  required this.params,
  required this.concurrency,
  required this.dataType,
  this.isKeepAlive = false,
});