import 'dart:typed_data';
class Test {
Uint8List testKey;
Test({this.testKey = Uint8List(0)});
}
Gives compile error: Error: Cannot invoke a non-'const' factory where a const expression is expected.
Also tried -- Uint8List.fromList([]); with same result.
How can I do this? Thanks