ErrorInfo constructor

ErrorInfo({
  1. int? playerId,
  2. String? code,
  3. String? message,
})

Implementation

ErrorInfo({
  this.playerId,
  this.code,
  this.message,
});