File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -59,6 +59,7 @@ void main(List<String> args) async {
59
59
exportAsModule: parsedArguments.command! ['as-module' ],
60
60
exportAsDebug: parsedArguments.command! ['as-debug' ],
61
61
environmentName: parsedArguments.command! ['project-environment' ],
62
+ snapshotId: parsedArguments.command! ['snapshot-id' ],
62
63
);
63
64
break ;
64
65
case 'deploy-firebase' :
Original file line number Diff line number Diff line change @@ -76,6 +76,7 @@ Future<String?> exportCode({
76
76
String ? branchName,
77
77
String ? environmentName,
78
78
String ? commitHash,
79
+ String ? snapshotId,
79
80
bool exportAsDebug = false ,
80
81
}) async {
81
82
stderr.write ('Downloading code with the FlutterFlow CLI...\n ' );
@@ -97,6 +98,7 @@ Future<String?> exportCode({
97
98
branchName: branchName,
98
99
environmentName: environmentName,
99
100
commitHash: commitHash,
101
+ snapshotId: snapshotId,
100
102
exportAsModule: exportAsModule,
101
103
includeAssets: includeAssets,
102
104
format: format,
@@ -173,6 +175,7 @@ Future<dynamic> _callExport({
173
175
String ? branchName,
174
176
String ? environmentName,
175
177
String ? commitHash,
178
+ String ? snapshotId,
176
179
required bool exportAsModule,
177
180
required bool includeAssets,
178
181
required bool format,
@@ -187,6 +190,7 @@ Future<dynamic> _callExport({
187
190
'include_assets_map' : includeAssets,
188
191
'format' : format,
189
192
'export_as_debug' : exportAsDebug,
193
+ 'snapshot_id' : snapshotId,
190
194
});
191
195
return await _callEndpoint (
192
196
client: client,
You can’t perform that action at this time.
0 commit comments