PageInput constructor

const PageInput({
  1. Key? key,
  2. required int maxLength,
  3. required TextEditingController controller,
  4. String? hint,
  5. int height = 260,
})

Implementation

const PageInput({Key? key, required this.maxLength, required this.controller, this.hint, this.height = 260}) : super(key: key);