blob: 52188ae70b14acb026b16839117cc989e742a046 [file]
>>> (indent 4)
_firestore //
.doc('$_usersCollection/$uid/streams/$streamId')
.update(<String, dynamic>{
'relocationOffered': relocation,
'workSituation': workSituation,
'zipCode': zipCode,
});
<<<
_firestore //
.doc('$_usersCollection/$uid/streams/$streamId')
.update(<String, dynamic>{
'relocationOffered': relocation,
'workSituation': workSituation,
'zipCode': zipCode,
});
>>> (indent 4)
_firestore //
.doc('$_usersCollection/$uid/streams/$streamId')
.update(<String, dynamic>{
'relocationOffered': relocation,
'workSituation': workSituation,
'zipCode': zipCode,
}).then((value) => null);
<<<
_firestore //
.doc('$_usersCollection/$uid/streams/$streamId')
.update(<String, dynamic>{
'relocationOffered': relocation,
'workSituation': workSituation,
'zipCode': zipCode,
})
.then((value) => null);
>>> (indent 4)
_firestore //
.doc('$_usersCollection/$uid/streams/$streamId')
.update(<String, dynamic>{
'relocationOffered': relocation,
'workSituation': workSituation,
'zipCode': zipCode,
})
.then((value) => null)
.then((value) => null);
<<<
_firestore //
.doc('$_usersCollection/$uid/streams/$streamId')
.update(<String, dynamic>{
'relocationOffered': relocation,
'workSituation': workSituation,
'zipCode': zipCode,
})
.then((value) => null)
.then((value) => null);