LoadError constructor

LoadError({
  1. int? code,
  2. String? msg,
})

Implementation

LoadError({
  this.code,
  this.msg,
});