readAllowed method
Implementation
Future<bool> readAllowed() async {
for (var i = 0; i < fireValues.length; i++) {
final currentField = fireValues[i];
final allows = await currentField.allowsRead();
if (allows == false) {
return false;
}
}
return true;
}