TErrorBuilder constructor

const TErrorBuilder({
  1. Key? key,
  2. required TError error,
  3. Color? color,
  4. bool showIcon = true,
})

Implementation

const TErrorBuilder({
  super.key,
  required this.error,
  this.color,
  this.showIcon = true,
});