copyWith method

KoiLabelForEachElement copyWith({
  1. String? listKey,
  2. List<KoiLabelElement>? templates,
})

Implementation

KoiLabelForEachElement copyWith({
  String? listKey,
  List<KoiLabelElement>? templates,
}) {
  return KoiLabelForEachElement(
    listKey: listKey ?? this.listKey,
    templates: templates ?? this.templates,
  );
}