GameLinkProps constructor

const GameLinkProps({
  1. required String name,
  2. required String href,
  3. required String accentColor,
  4. String? iconUrl,
  5. Widget? icon,
  6. String? badge,
  7. bool mini = false,
})

Implementation

const GameLinkProps({
  required this.name,
  required this.href,
  required this.accentColor,
  this.iconUrl,
  this.icon,
  this.badge,
  this.mini = false,
});