init function
- @Deprecated('[authorizationSecret] will be removed in next releases')
- String applicationId,
- String authorizationKey,
- String authorizationSecret, {
- Future<
CubeSession> onSessionRestore()?,
Implementation
@Deprecated('[authorizationSecret] will be removed in next releases')
init(String applicationId, String authorizationKey, String authorizationSecret,
{Future<CubeSession> Function()? onSessionRestore}) {
CubeSettings.instance.init(
applicationId, authorizationKey, authorizationSecret,
onSessionRestore: onSessionRestore);
}