EntityRes constructor

const EntityRes({
  1. Object? entity,
  2. required bool ok,
  3. String? msg,
})

Implementation

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