13 lines
283 B
Dart
13 lines
283 B
Dart
|
class Persistent{
|
||
|
static List<String> jobCategoryList = [
|
||
|
"Architecture and Construction",
|
||
|
"Education and Training",
|
||
|
"Development - Programming",
|
||
|
"Business",
|
||
|
"Information Technology",
|
||
|
"Human Resources",
|
||
|
"Marketing",
|
||
|
"Design",
|
||
|
"Accounting"
|
||
|
];
|
||
|
}
|