StatisticalGraphError constructor

const StatisticalGraphError({
  1. required String errorMessage,
  2. dynamic extra,
  3. int? clientId,
})

An error message to be shown to the user instead of the graph

Implementation

const StatisticalGraphError({
  required this.errorMessage,
  this.extra,
  this.clientId,
});