update method
Implementation
_i2.Future<void> update({
required BigInt projectShaIdentifier,
required String languageCode,
required String countryCode,
required Map<String, String> updatedLabels,
}) =>
caller.callServerEndpoint<void>(
'arb',
'update',
{
'projectShaIdentifier': projectShaIdentifier,
'languageCode': languageCode,
'countryCode': countryCode,
'updatedLabels': updatedLabels,
},
);