trace property

String? trace

Get the server side stack trace or return null if not available

Implementation

String? get trace {
  final val = grid.meta.get('errTrace', checked: false);
  if (val is HStr) return val.toString();
  return null;
}