Skip to content

Commit

Permalink
Fix code format
Browse files Browse the repository at this point in the history
Ran dart format to pass ci code format
  • Loading branch information
shepherd-l committed Dec 18, 2023
1 parent c41d4e8 commit 4d0f551
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/src/user.dart
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ class OneSignalUser {

/// Returns the list of tags on the current user.
Future<Map<String, String>> getTags() async {
Map<dynamic, dynamic> tags = await _channel.invokeMethod("OneSignal#getTags");
Map<dynamic, dynamic> tags =
await _channel.invokeMethod("OneSignal#getTags");
return tags.cast<String, String>();
}

Expand Down

0 comments on commit 4d0f551

Please sign in to comment.