kt property
KtMutableList<T>
get
kt
Wraps this List with a KtMutableList interface.
In most cases you don't want mutability. Use toImmutableList instead.
Mutations on the KtMutableList are operated on the original List.
Implementation
KtMutableList<T> get kt => DartMutableList.noCopy(this);