MakeObservable constructor

const MakeObservable({
  1. bool readOnly = false,
  2. Function? equals,
  3. bool useDeepEquality = true,
})

Implementation

const MakeObservable({
  this.readOnly = false,
  this.equals,
  this.useDeepEquality = true,
});