copyWith method

StatisticalGraphError copyWith({
  1. String? errorMessage,
})

Implementation

StatisticalGraphError copyWith({String? errorMessage}) =>
    StatisticalGraphError(errorMessage: errorMessage ?? this.errorMessage);