Why does calling .reversed on an instance of Uint8List not return an instance of Uint8List in reversed byte order. Is there some logical reason for not returning a Uint8List in reversed byte order ?
Uint8List uint8List = Uint8List(20); //20 byte array
Uint8List reversed = uint8List.reversed; //error not returning Uint8List