getLastUpdateSha method
Implementation
_i2.Future<List<({String sha, DateTime updatedDate})>?> getLastUpdateSha({
required String token,
required BigInt projectShaIdentifier,
}) =>
caller.callServerEndpoint<List<({String sha, DateTime updatedDate})>?>(
'syncProject',
'getLastUpdateSha',
{
'token': token,
'projectShaIdentifier': projectShaIdentifier,
},
);