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