Skip to content

Commit 5cf4b23

Browse files
committed
Fix fun name
1 parent a6d44d8 commit 5cf4b23

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/src/generators/assets_generator.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ AssetType _constructAssetTree(List<String> assetRelativePathList) {
114114
return assetTypeMap['.'];
115115
}
116116

117-
_Statement _createAssetTypeStatements(
117+
_Statement _createAssetTypeStatement(
118118
File pubspecFile,
119119
AssetType assetType,
120120
List<Integration> integrations,
@@ -182,7 +182,7 @@ String _dotDelimiterStyleDefinition(
182182
if (FileSystemEntity.isDirectorySync(assetAbsolutePath)) {
183183
final statements = assetType.children
184184
.map(
185-
(child) => _createAssetTypeStatements(
185+
(child) => _createAssetTypeStatement(
186186
pubspecFile,
187187
child,
188188
integrations,
@@ -258,7 +258,7 @@ String _flatStyleDefinition(
258258
.distinct()
259259
.sorted()
260260
.map(
261-
(relativePath) => _createAssetTypeStatements(
261+
(relativePath) => _createAssetTypeStatement(
262262
pubspecFile,
263263
AssetType(relativePath),
264264
integrations,

0 commit comments

Comments
 (0)