Command constructor
const
Command({
- required String name,
- required List<
ParameterInfo> params, - required ConcurrencyType concurrency,
- required String dataType,
- bool isKeepAlive = false,
Implementation
const Command({
required this.name,
required this.params,
required this.concurrency,
required this.dataType,
this.isKeepAlive = false,
});