ActionModel constructor

ActionModel({
  1. int? establishmentId,
  2. String? onAction = 'nfe',
  3. required ActionParamms actionParamms,
})

Implementation

ActionModel({
  this.establishmentId,
  this.onAction = 'nfe',
  required this.actionParamms,
});