FFCodemagicGooglePlayStoreSettings constructor
FFCodemagicGooglePlayStoreSettings({
- FFCodemagicGooglePlayStoreSettings_GooglePlayTrack? playTrack,
- String? playstoreKeyPath,
- String? playstoreCredentialsPath,
- bool? manualKeystore,
- bool? sameKeystoreAndAliasPassword,
- String? alias,
- String? manualKeystorePath,
- bool? changesNotSentForReview,
- bool? acknowledgedReleaseModeDialog,
- bool? submitAsDraft,
Implementation
factory FFCodemagicGooglePlayStoreSettings({
FFCodemagicGooglePlayStoreSettings_GooglePlayTrack? playTrack,
$core.String? playstoreKeyPath,
$core.String? playstoreCredentialsPath,
$core.bool? manualKeystore,
$core.bool? sameKeystoreAndAliasPassword,
$core.String? alias,
$core.String? manualKeystorePath,
$core.bool? changesNotSentForReview,
$core.bool? acknowledgedReleaseModeDialog,
$core.bool? submitAsDraft,
}) {
final result = create();
if (playTrack != null) result.playTrack = playTrack;
if (playstoreKeyPath != null) result.playstoreKeyPath = playstoreKeyPath;
if (playstoreCredentialsPath != null)
result.playstoreCredentialsPath = playstoreCredentialsPath;
if (manualKeystore != null) result.manualKeystore = manualKeystore;
if (sameKeystoreAndAliasPassword != null)
result.sameKeystoreAndAliasPassword = sameKeystoreAndAliasPassword;
if (alias != null) result.alias = alias;
if (manualKeystorePath != null)
result.manualKeystorePath = manualKeystorePath;
if (changesNotSentForReview != null)
result.changesNotSentForReview = changesNotSentForReview;
if (acknowledgedReleaseModeDialog != null)
result.acknowledgedReleaseModeDialog = acknowledgedReleaseModeDialog;
if (submitAsDraft != null) result.submitAsDraft = submitAsDraft;
return result;
}