InitResultEntity constructor

InitResultEntity({
  1. bool? success,
  2. int? errorCode,
  3. String? errorMsg,
})

Implementation

InitResultEntity({
    this.success,
    this.errorCode,
    this.errorMsg,});