class HomeController extends GetxController with StateMixin<List<dynamic>> {
@override
void onInit() {
super.onInit();
UserProvider().getUser().then((resp) {
change(resp, status: RxStatus.success());
}, onError: (err) {
change(
null,
status: RxStatus.error(err.toString()),
);
});
}
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter