type property

String type

Implementation

String get type {
  final String type = this
      .runtimeType
      .toString()
      .replaceFirst(new RegExp(r'[^<]+<'), '')
      .replaceFirst(new RegExp(r'>$'), '');
  //print("T $type");
  return type;
}