AppAttestation constructor

AppAttestation(
  1. {required int googleCloudProjectNumber}
)

Default constructor for AppAttestation.

Params:

Implementation

factory AppAttestation({
  required int googleCloudProjectNumber,
}) {
  return AppAttestationImpl(
    googleCloudProjectNumber: googleCloudProjectNumber,
  );
}