™
И что бы я потом мог его подписать на любые другие каналы ?
При регистрации в чат он должен синхронизироваться с аккаунтом телегамма
Это типа как телеграм + только с другим функционалом
Size: a a a
™
Ю
Ю
EE
™
KM
Д
q
Д
q
А
Д
AP
AP
DY
DY
DY
AP
D
classСоздал
class Question {
String questionText;
bool questionAnswer;
Question({String q, bool a}) {
questionText = q;
questionAnswer = a;
}
}
Listс этим классом
List<Question> questionBank = [Выдает ошибку
(q: 'You can lead a cow down stairs but not up stairs.', a: false),
(q: 'Approximately one quarter of human bones are in the feet.', a: true),
(q: 'A slug\'s blood is green.', a: true),
];
Undefined name 'q'.Можете подсказать почему он q не понимает?
Try correcting the name to one that is defined, or defining the name.