mirror of
https://github.com/nini22P/iris.git
synced 2026-09-06 07:47:23 +08:00
9 lines
142 B
Dart
9 lines
142 B
Dart
import 'dart:developer';
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
void logger(String message) {
|
|
if (kDebugMode) {
|
|
log(message);
|
|
}
|
|
}
|