KeyboardPage constructor

const KeyboardPage({
  1. required Widget? builder(
    1. BuildContext context
    ),
  2. required Point<double> point,
  3. Key? key,
})

Implementation

const KeyboardPage({required this.builder, required this.point, Key? key})
    : super(key: key);