getManifest method

  1. @override
AndroidManifest getManifest(
  1. String manifestFileType
)
override

Implementation

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