getManifest method
Implementation
@override
AndroidManifest getManifest(String manifestFileType) {
if (!_manifest.containsKey(manifestFileType)) {
throw Exception(
"Manifest file for type $manifestFileType not found",
);
}
return _manifest[manifestFileType]!;
}