mirror of https://github.com/flutter/samples.git
15 lines
409 B
15 lines
409 B
class Constants {
|
|
/// Email for the hardcoded login.
|
|
static const email = 'email@example.com';
|
|
|
|
/// Password for the hardcoded login.
|
|
static const password = 'password';
|
|
|
|
/// Token to be returned on successful login.
|
|
static const token =
|
|
' e1c37dfd973353b78bb71df050e2c6e72d53034e148920383968ae49b96f1fd2';
|
|
|
|
/// User id to be returned on successful login.
|
|
static const userId = '123';
|
|
}
|