Player constructor

const Player({
  1. required String idPlayer,
  2. String? surname,
  3. String? name,
  4. String? patronymic,
  5. String? comment,
  6. String? dbChgkInfoTag,
})

Implementation

const Player({
  required this.idPlayer,
  this.surname,
  this.name,
  this.patronymic,
  this.comment,
  this.dbChgkInfoTag,
});