7 lines
246 B
Dart
7 lines
246 B
Dart
class Constant {
|
|
static const userId = '_id';
|
|
static const firstName = 'firstname';
|
|
static const lastName = 'lastname';
|
|
static const acceptHeaderDefault = 'application/json';
|
|
static const contentTypeHeaderDefault = 'application/json';
|
|
} |