FindCharMotion constructor

const FindCharMotion({
  1. required String char,
  2. required bool forward,
  3. bool before = false,
})

Implementation

const FindCharMotion({
  required this.char,
  required this.forward,
  this.before = false,
});