authenticationConfigTemplate top-level constant

String const authenticationConfigTemplate

authenticationConfigTemplate

Authentication configuration or constants\n

Implementation

const String authenticationConfigTemplate =
    """/// Authentication configuration or constants\n\n
/// `userNameKey`
///
/// ### Used to store the user name in cache eg: shared pref or hive
const String userNameKey = "name";

/// `userEmailKey`
///
/// ### Used to store the user email in cache eg: shared pref or hive
const String userEmailKey = "email";

/// `userTokenKey`
///
/// ### Used to store the user token in cache eg: shared pref or hive
const String userTokenKey = "token";

/// `userTokenTypeKey`
///
/// ### Used to store the user token in cache eg: shared pref or hive
const String userTokenTypeKey = "token_type";

""";