RendererError constructor

const RendererError({
  1. String title = 'Undefined Error',
  2. String message = "Empty Error Message",
  3. int code = 1,
  4. dynamic customError,
})

Implementation

const RendererError(
    {this.title = 'Undefined Error',
    this.message = "Empty Error Message",
    this.code = 1,
    this.customError});