Returns a new list containing the elements of this collection sorted in ascending order.
Coral<List<E>> get sorted => coral.map((source) { return List<E>.unmodifiable(source.toList()..sort()); });