Metadata constructor

Metadata({
  1. String? accountLockType,
  2. required String? teamLockType,
  3. required String? disqualifyType,
  4. required int? minimumAccountLevel,
})

Implementation

Metadata({
  this.accountLockType,
  required this.teamLockType,
  required this.disqualifyType,
  required this.minimumAccountLevel,
});