You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
342 B
17 lines
342 B
import 'package:js/js.dart'; |
|
// ignore: avoid_web_libraries_in_flutter |
|
import 'dart:html' as html; |
|
|
|
@JS('fx_initial_route') |
|
external String fxInitialRoute(); |
|
|
|
@JS('parent_home') |
|
external String parentHome(); |
|
|
|
String? getToken() { |
|
return html.window.localStorage['token']; |
|
} |
|
|
|
String? getUser() { |
|
return html.window.localStorage['user']; |
|
}
|
|
|