web_logs_handler.dart 89 B

123456
  1. abstract class WebLogsHandler {
  2. const WebLogsHandler();
  3. void handle(String data);
  4. }