updateTranslations method
Implementation
_i2.Future<void> updateTranslations({
required String token,
required String currentCommitSha,
required BigInt projectShaIdentifier,
required Map<String, Map<String, Map<String, String>>> madeTranslations,
required Set<String> projectCodeBaseFolders,
required _i7.ArbKeysAppearancesPath pathsOfKeys,
}) =>
caller.callServerEndpoint<void>(
'translations',
'updateTranslations',
{
'token': token,
'currentCommitSha': currentCommitSha,
'projectShaIdentifier': projectShaIdentifier,
'madeTranslations': madeTranslations,
'projectCodeBaseFolders': projectCodeBaseFolders,
'pathsOfKeys': pathsOfKeys,
},
);