TouchModel constructor

TouchModel({
  1. required double x,
  2. required double y,
  3. required double z,
  4. required double force,
  5. required bool isShow,
})

Создание модели касания экрана

Implementation

TouchModel({
  required this.x,
  required this.y,
  required this.z,
  required this.force,
  required this.isShow,
});