Skip to content

Commit

Permalink
values should use double quotes (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
johsoe authored Jul 6, 2020
1 parent 745f979 commit 819dd91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/src/nstack_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ import 'package:nstack/partial/section_key_delegate.dart';
.forEach((stringKey, stringValue) {
stringValue = _escapeSpecialCharacters(stringValue);
output.writeln(
'\tString get $stringKey => get(\'$stringKey\', \'$stringValue\');');
'\tString get $stringKey => get(\'$stringKey\', \"$stringValue\");');
});
output.writeln('''
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: nstack
description: Nstack plugin for Flutter.
version: 0.1.4
version: 0.1.5
author: Nodes Agency
homepage: https://github.com/nstack-io/flutter-sdk

Expand Down

0 comments on commit 819dd91

Please sign in to comment.