Abhilash A S
Abhilash A S
@andronasef Please merge this for sound null safety
@MarcelGarus Same issue here also
@MarcelGarus
@MarcelGarus I use a getx main function. very normal ones ``` import 'dart:math'; import 'package:flutter/services.dart'; import 'package:window_manager/window_manager.dart'; import 'constant/route_constant.dart'; import 'ui/view/second_home.dart'; import 'package:flutter/material.dart'; import 'package:get/get_navigation/src/root/get_material_app.dart'; import 'constant/get_pages_constant.dart'; void main() async...
@deandreamatias Code example already given above. It is just the component rendered in `FutureBuilder` when `snapshot.data` is valid one ``` final initialValue = selected != null ? data.firstWhere( (element) =>...
@deandreamatias `IaTypes` looks like this ``` class IaTypes { int? iaCaseType; String? iaTypeName; IaTypes({this.iaCaseType, this.iaTypeName}); IaTypes.fromJson(Map json) { iaCaseType = json['ia_case_type']; iaTypeName = json['ia_type_name']; } Map toJson() { final data...
@deandreamatias Most of people will work with some kind of class while using this. Can you include such example in the documentation using Array of Objects in addition to Current...