Pavel Matusevich
05/02/2022, 12:24 AM_showAuthDialog({ nonInteractive, error, canCancel, onTryAgain }?: AuthDialogParams): void;
What would be the best way to write Kotlin definition for that function? Just to replace argument name with any valid string or..?
Just in case, AuthDialogParams definition:
interface AuthDialogParams {
nonInteractive?: boolean;
error?: Error;
canCancel?: boolean;
onTryAgain?: () => Promise<void>;
}
Thanks in advance!nschulzke
05/02/2022, 1:55 AM