getTarget method

String getTarget([
  1. Context? c
])

Implementation

String getTarget([Context? c]) {
  if (target is DataStorage) {
    return 'storage ${(target as DataStorage).toString(c)}';
  }
  return '$_type $_typeValue';
}