reverse property

Text get reverse

Implementation

Text get reverse {
  return copyWith(text: data!.split('').reversed.join());
}