Skip to content

Commit

Permalink
style: sort variable order
Browse files Browse the repository at this point in the history
  • Loading branch information
RatakondalaArun committed Jul 20, 2022
1 parent 6713bd4 commit 3a5822e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/abs/icon_generator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,18 @@ class IconGeneratorContext {
/// A logger
final FLILogger logger;

/// Value of `--flavor` flag
final String? flavor;

/// Value of `--prefix` flag
final String prefixPath;

/// Value of `--flavor` flag
final String? flavor;

/// Creates an instance of [IconGeneratorContext]
IconGeneratorContext({
required this.config,
this.flavor,
required this.prefixPath,
required this.logger,
required this.prefixPath,
this.flavor,
});

/// Shortcut for `config.webConfig`
Expand Down

0 comments on commit 3a5822e

Please sign in to comment.