String doubleStr2Int(String? doubleStr) { double text = double.tryParse(doubleStr ?? "0") ?? 0; return "${text.toInt()}"; }