debug method

String debug(
  1. VarDictionary dict
)

Implementation

String debug(VarDictionary dict) {
  final value = dict.get(type, field);
  final strValue = type == ValueType.typeBytes
      ? ByteUtils.toHexList(value as Uint8List?)
      : value;
  return '$field=$strValue';
}