HintCell.from constructor

HintCell.from({
  1. required String hint,
  2. required int span,
})

Returns the new instance of HintCell based on arguments.

Implementation

HintCell.from({
  required this.hint,
  required this.span,
});