getPackageLicenseContracts method

List<int>? getPackageLicenseContracts(
  1. Map<String, List<int>> packageLicenseBindings,
  2. String packageName
)

Get the contract of the package and its licenses by setting the bindings Map key to the provided package name. This will extract the corresponsing index values of the independend List objects.

Implementation

List<int>? getPackageLicenseContracts(
    Map<String, List<int>> packageLicenseBindings, String packageName) {
  final List<int>? bindings = packageLicenseBindings[packageName];
  return bindings;
}