Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
amake committed Mar 31, 2024
1 parent 06c946f commit dc3ef2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class CharsetDetectorAndroid extends CharsetDetectorPlatform {
}

/// Detect and return the charset of [bytes].
@override
Future<String> detect(Uint8List bytes) async {
return (await _channel.invokeMethod<String>('detect', {'data': bytes}))!;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class CharsetDetectorDarwin extends CharsetDetectorPlatform {
}

/// Detect and return the charset of [bytes].
@override
Future<String> detect(Uint8List bytes) async {
return (await _channel.invokeMethod<String>('detect', {'data': bytes}))!;
}
Expand Down

0 comments on commit dc3ef2c

Please sign in to comment.