Skip to content

Commit b73f6f7

Browse files
committed
remove extra space
1 parent 790c6fd commit b73f6f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

templates/dart/lib/src/input_file.dart.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@ class InputFile {
1010
@Deprecated('Use `InputFile.fromPath` or `InputFile.fromBytes` instead.')
1111
InputFile({this.path, this.filename, this.contentType, this.bytes}) {
1212
if (path == null && bytes == null) {
13-
throw {{ spec.title | caseUcfirst }}Exception('One of `path` or `bytes` is required');
13+
throw {{ spec.title | caseUcfirst }}Exception('One of `path` or `bytes` is required');
1414
}
1515
}
1616

1717
InputFile._({this.path, this.filename, this.contentType, this.bytes}) {
1818
if (path == null && bytes == null) {
19-
throw {{ spec.title | caseUcfirst }}Exception('One of `path` or `bytes` is required');
19+
throw {{ spec.title | caseUcfirst }}Exception('One of `path` or `bytes` is required');
2020
}
2121
}
2222

0 commit comments

Comments
 (0)