ThirukuralsInRange constructor

const ThirukuralsInRange({
  1. Key? key,
  2. required int? from,
  3. required int? to,
})

Creates a widget to display Thirukurals from from to to.

Implementation

const ThirukuralsInRange({
  super.key,
  required this.from,
  required this.to,
});