GetApplicationKeyRequest constructor

GetApplicationKeyRequest({
  1. String? keyId,
})

Implementation

factory GetApplicationKeyRequest({
  $core.String? keyId,
}) {
  final result = create();
  if (keyId != null) result.keyId = keyId;
  return result;
}