change(example): use debugPrint instead of log

This commit is contained in:
Ricardo Dalarme 2023-01-24 16:01:26 -03:00
parent bb0203ea2f
commit db609c2f7c
1 changed files with 1 additions and 3 deletions

View File

@ -1,5 +1,3 @@
import 'dart:developer';
import 'package:example/example_candidate_model.dart';
import 'package:example/example_card.dart';
import 'package:flutter/material.dart';
@ -75,6 +73,6 @@ class _ExamplePageState extends State<Example> {
}
void _swipe(int index, CardSwiperDirection direction) {
log("the card was swiped to the: " + direction.name);
debugPrint("the card was swiped to the: " + direction.name);
}
}