prelude static method
Initialization.
Implementation
static Future<void> prelude() async {
if (_packageInfo != null) {
BadFl.log(
module: 'impl/AppMetaImpl',
message:
'The call to "prelude" is ignored cause package info has already been initialized',
);
return;
}
_packageInfo = await PackageInfo.fromPlatform();
BadFl.log(module: 'impl/AppMetaImpl', message: 'Package info initialized');
}