start method
Implementation
@override
Future<bool> start({bool refresh = false, String? key}) async {
bool ok = true;
try {
Reader().registerListener(this);
} catch (e) {
ok = await onFail(Data(), code: 500, message: e.toString());
}
return ok;
}