copyWith method

dynamic copyWith({
  1. ID? nodeID,
  2. String? message,
})

Implementation

copyWith({
  ID? nodeID,
  String? message,
}) =>
    EditorErrorEntity(
      nodeID: nodeID ?? this.nodeID,
      message: message ?? this.message,
    );