copyWith method

OrgFootnoteReference copyWith({
  1. bool? isDefinition,
  2. String? leading,
  3. String? name,
  4. ({String delimiter, OrgContent value})? definition,
  5. String? trailing,
  6. String? id,
})

Implementation

OrgFootnoteReference copyWith({
  bool? isDefinition,
  String? leading,
  String? name,
  ({String delimiter, OrgContent value})? definition,
  String? trailing,
  String? id,
}) =>
    OrgFootnoteReference(
      isDefinition ?? this.isDefinition,
      leading ?? this.leading,
      name ?? this.name,
      definition ?? this.definition,
      trailing ?? this.trailing,
      id ?? this.id,
    );