AndroidPointerProperties constructor Null safety

const AndroidPointerProperties(
  1. {required int id,
  2. required int toolType}
)

Creates an AndroidPointerProperties object.

All parameters must not be null.

Implementation

const AndroidPointerProperties({
  required this.id,
  required this.toolType,
}) : assert(id != null),
     assert(toolType != null);