GamepadInfo constructor

const GamepadInfo({
  1. required SdlGuid guid,
  2. required String? name,
  3. required String? path,
  4. required String? serial,
  5. required int? steamHandle,
  6. required int? productId,
  7. required int? productVersion,
  8. required GamepadType realType,
  9. required GamepadType type,
  10. required int? vendor,
  11. required int? firmwareVersion,
  12. required int? properties,
})

A const constructor.

Implementation

const GamepadInfo({
  required this.guid,
  required this.name,
  required this.path,
  required this.serial,
  required this.steamHandle,
  required this.productId,
  required this.productVersion,
  required this.realType,
  required this.type,
  required this.vendor,
  required this.firmwareVersion,
  required this.properties,
});