7 lines
127 B
Dart
7 lines
127 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
void skreek(String msg) {
|
|
// ignore: avoid_print
|
|
debugPrint("[skreek] $msg");
|
|
}
|