toHuman method
Implementation
String toHuman() {
if (this is List<Map<String, dynamic>> || this is Map<String, dynamic>) {
return jsonEncode(
this,
// handle BigInt and Some / None
toEncodable: _encodeJson,
);
}
return toString();
}