getInputSelectionEnd function
Implementation
int? getInputSelectionEnd(input) {
assert(isInputElement(input));
return input != null ? input.selectionEnd as int: null;
}
int? getInputSelectionEnd(input) {
assert(isInputElement(input));
return input != null ? input.selectionEnd as int: null;
}