tf method

void tf(
  1. dynamic rf
)

This is (messy) function that is used to run other function in tests it is called: tf(testSomething); Problems: null method do not have... call

Implementation

void tf(var rf) {
  String _s = rf;
  var _sType = rf.runtimeType;

//  devl:DEV Function  getter  There is no such getter 'runTimeType' in 'Function'
//  String _sRunTimeType = rf..runTimeType;    //.runTimeType;

  print('b  b  b  b  b  b  b  b  b  b  b  b  b     Beginning:   $_s');
  rf();
  print('runtime type:   $_sType');
  print('e  e  e  e  e  e  e  e  e  e  e  e  e  e   End of +   $_s');
  print('');
}