Skip to content

Commit

Permalink
refactor: add missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardo.gabriel committed Jan 2, 2025
1 parent 5665033 commit 4856d41
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/src/services/ds_context.service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ abstract class DSContextService {
static BuildContext? _context = Get.context;
static BuildContext? _overlayContext = Get.overlayContext;

static init(final BuildContext context,
[final BuildContext? overlayContext]) {
static init(
final BuildContext context, [
final BuildContext? overlayContext,
]) {
_context = context;
_overlayContext = overlayContext;
}
Expand Down

0 comments on commit 4856d41

Please sign in to comment.