MmPreference constructor

MmPreference({
  1. String? userId,
  2. String? category,
  3. String? name,
  4. String? value,
})

Returns a new MmPreference instance.

Implementation

MmPreference({
  this.userId,
  this.category,
  this.name,
  this.value,
});