ErrorSource constructor

ErrorSource({
  1. String? pointer,
  2. String? parameter,
})

Returns a new ErrorSource instance.

Implementation

ErrorSource({
  this.pointer,
  this.parameter,
});