-
Notifications
You must be signed in to change notification settings - Fork 1
[docs] Wrong docs for authorizationSecret deprecations #105
Copy link
Copy link
Open
Description
init method is marked as deprecated instead of authorizationSecret property
current:
@Deprecated('[authorizationSecret] will be removed in next releases')
init(String applicationId, String authorizationKey, String authorizationSecret,
{Future<CubeSession> Function()? onSessionRestore}) {}this should be
init(
String applicationId,
String authorizationKey,
@Deprecated('[authorizationSecret] will be removed in next releases')
String authorizationSecret, {
Future<CubeSession> Function()? onSessionRestore,
}) {}its showing lint warning for init method
'init' is deprecated and shouldn't be used. [authorizationSecret] will be removed in next releases. Try replacing the use of the deprecated member with the replacement. •
deprecated_member_use
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels