Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 22, 2022 20:53
Show Gist options
  • Save Deleplace/3599592697958f9433ec180f921b2ed1 to your computer and use it in GitHub Desktop.
Save Deleplace/3599592697958f9433ec180f921b2ed1 to your computer and use it in GitHub Desktop.
Remove sublist
void main() {
var items = ["a", "b", "c", "d", "e"];
var i = 2;
var j = 4;
items.removeRange(i, j);
print(items);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment