TemplatePatch constructor

TemplatePatch({
  1. List<Map<String, dynamic>>? body,
  2. List<Map<String, dynamic>>? footer,
  3. List<Map<String, dynamic>>? header,
  4. String? name,
  5. String? type,
})

Returns a new TemplatePatch instance.

Implementation

TemplatePatch({
  this.body,
  this.footer,
  this.header,
  this.name,
  this.type,
});