fixed63Length method

void fixed63Length()

Implementation

void fixed63Length() {
  addListener(() {
    if (text.length == 63 && Platform.isAndroid) {
      text += " ";
      selection = TextSelection.fromPosition(
        TextPosition(
          affinity: TextAffinity.downstream,
          offset: text.length - 1,
        ),
      );
    }
  });
}