import 'package:rasadyar_core/core.dart'; class RoleLogic extends GetxController { TokenStorageService tokenService = Get.find(); GService gService = Get.find(); RxList roles = [].obs; @override void onInit() { super.onInit(); List items = tokenService.getUserLocal(Module.chicken)!.roles ?? []; if (items.isNotEmpty) { roles.assignAll(items); } } }