copyWith method

GraphNode copyWith({
  1. String? flow,
})

Implementation

GraphNode copyWith({String? flow}) => GraphNode(
      id: id,
      type: type,
      title: title,
      flow: flow ?? this.flow,
      description: description,
      tags: tags,
      source: source,
      sourceRef: sourceRef,
    );