dartterm/lib/skreek.dart

7 lines
127 B
Dart
Raw Permalink Normal View History

2023-09-21 05:00:45 +00:00
import 'package:flutter/foundation.dart';
2023-09-21 03:56:30 +00:00
void skreek(String msg) {
// ignore: avoid_print
2023-09-21 05:00:45 +00:00
debugPrint("[skreek] $msg");
2023-09-21 03:56:30 +00:00
}