I have this const variable in flutter:
static const questions = [
{
"question": "question",
"answers": ["1", "2"],
"message":
"message",
},
]
how to access to "1" from dart??
I try using QuestionContent.questions[0]["answers"][0].
But I got error "The method '[]' can't be unconditionally invoked because the receiver can be 'null'"
