update method

Future<void> update({
  1. required BigInt projectShaIdentifier,
  2. required String languageCode,
  3. required String countryCode,
  4. required Map<String, String> updatedLabels,
})

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,
      },
    );