AndroidKeyRestrictions constructor

AndroidKeyRestrictions({
  1. Iterable<AndroidApplication>? allowedApplications,
})

Implementation

factory AndroidKeyRestrictions({
  $core.Iterable<AndroidApplication>? allowedApplications,
}) {
  final result = create();
  if (allowedApplications != null)
    result.allowedApplications.addAll(allowedApplications);
  return result;
}