Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Sep 26, 2024
1 parent e3bea0e commit 57d7ad8
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions bluetooth_flutter_blue/lib/src/flutter_blue_import.dart
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ extension FlutterBluePlusPrvExt on FlutterBluePlus {
androidUsesFineLocation: androidUsesFineLocation,
);

Future scanComplete =
FlutterBluePlus.isScanning.where((e) => !e).first;
Future scanComplete = FlutterBluePlus.isScanning.where((e) => !e).first;

scanComplete.whenComplete(() {
subscription.cancel();
Expand Down
1 change: 0 additions & 1 deletion bluetooth_server/lib/src/bluetooth_server.dart
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import 'package:tekartik_bluetooth_server/src/constant.dart';
import 'package:tekartik_common_utils/common_utils_import.dart';
import 'package:tekartik_web_socket_io/web_socket_io.dart';


typedef BluetoothServerNotifyCallback = void Function(
bool response, String method, dynamic params);

Expand Down
1 change: 0 additions & 1 deletion bluetooth_server/lib/src/bluetooth_server_client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import 'package:tekartik_bluetooth_server/src/constant.dart';
import 'package:tekartik_common_utils/common_utils_import.dart';
import 'package:tekartik_web_socket_io/web_socket_io.dart';


class ServerInfo {
bool? isIOS;
bool? isAndroid;
Expand Down

0 comments on commit 57d7ad8

Please sign in to comment.