internalInit method
Implementation
@protected
@mustCallSuper
Future<void> internalInit() async {
packageInfo = await PackageInfo.fromPlatform();
// 3-number builds are internal (ex 1.4.12)
if (packageInfo.version.split('.').length == 3) {
logDebug('INTERNAL VERSION: ${packageInfo.version}');
_isInternalVersion = true;
}
}