BaseRes constructor

const BaseRes({
  1. required bool ok,
  2. String? msg,
})

Implementation

const BaseRes({
  required this.ok,
  this.msg,
});