print method

void print()

Print the history of the Drip

Implementation

void print() {
  final logger = Logger();
  logger.d('MemoryInterceptor ** History **:');
  for (final state in _history) {
    logger.d('$state');
  }
}