[Super Group]
This commit is contained in:
@@ -2,14 +2,14 @@ import 'dart:convert';
|
||||
|
||||
class Utils {
|
||||
static List<T> toList<T>(String value, T f(Map<String, dynamic> map)) =>
|
||||
(_formatJson(value) as List).map((e) => f(e)).toList();
|
||||
(formatJson(value) as List).map((e) => f(e)).toList();
|
||||
|
||||
static T toObj<T>(String value, T f(Map<String, dynamic> map)) =>
|
||||
f(_formatJson(value));
|
||||
f(formatJson(value));
|
||||
|
||||
static List<dynamic> toListMap(String value) => _formatJson(value);
|
||||
static List<dynamic> toListMap(String value) => formatJson(value);
|
||||
|
||||
static dynamic _formatJson(String value) => jsonDecode(value);
|
||||
static dynamic formatJson(String value) => jsonDecode(value);
|
||||
|
||||
static String checkOperationID(String? obj) =>
|
||||
obj ?? DateTime.now().millisecondsSinceEpoch.toString();
|
||||
|
||||
Reference in New Issue
Block a user