Owner constructor

Owner({
  1. required String id,
  2. String? disPlayName,
})

Implementation

Owner({
  required this.id,
  this.disPlayName,
});