final List<String> quotes = [
"sentence one",
"sentence two",
"sentence 3",
"sentence 4",
];
final _quetesIndex = Random().nextInt(quotes.length);
When I try to get the quotes.length it gives an error!
"The instance member 'quotes' can't be accessed in an initializer. Try replacing the reference to the instance member with a different expression"