LiveActivityInfo constructor

const LiveActivityInfo({
  1. required String id,
  2. String? template,
  3. String? status,
  4. String? homeTeamName,
  5. String? awayTeamName,
  6. int? homeScore,
  7. int? awayScore,
  8. String? phase,
})

Implementation

const LiveActivityInfo({
  required this.id,
  this.template,
  this.status,
  this.homeTeamName,
  this.awayTeamName,
  this.homeScore,
  this.awayScore,
  this.phase,
});