ListTemplatesOutput constructor

  1. @JsonSerializable(includeIfNull: false)
const ListTemplatesOutput({
  1. @TemplateViewConverter() required List<TemplateView> communicationTemplates,
  2. @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory ListTemplatesOutput({
  @TemplateViewConverter() required List<TemplateView> communicationTemplates,

  /// Contains unknown objects not defined in Lexicon.
  @JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _ListTemplatesOutput;