Skip to content

Commit

Permalink
fix: Fixing required trailing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
jackwill99 committed Aug 28, 2024
1 parent ab5a6db commit 7286f0d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions packages/audioplayers/test/fake_audioplayers_platform.dart
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,12 @@ class FakeAudioplayersPlatform extends AudioplayersPlatformInterface {
String playerId, {
required bool allows,
}) async {
calls.add(FakeCall(
id: playerId, method: 'setAllowsExternalPlayback', value: allows));
calls.add(
FakeCall(
id: playerId,
method: 'setAllowsExternalPlayback',
value: allows,
),
);
}
}

0 comments on commit 7286f0d

Please sign in to comment.