MmGroup constructor

MmGroup({
  1. String? id,
  2. String? name,
  3. String? displayName,
  4. String? description,
  5. String? source_,
  6. String? remoteId,
  7. int? createAt,
  8. int? updateAt,
  9. int? deleteAt,
  10. bool? hasSyncables,
})

Returns a new MmGroup instance.

Implementation

MmGroup({
  this.id,
  this.name,
  this.displayName,
  this.description,
  this.source_,
  this.remoteId,
  this.createAt,
  this.updateAt,
  this.deleteAt,
  this.hasSyncables,
});