DecryptedFlatRateTarification constructor

DecryptedFlatRateTarification({
  1. String? code,
  2. FlatRateType? flatRateType,
  3. Map<String, String>? label,
  4. List<DecryptedValorisation>? valorisations,
  5. Base64String? encryptedSelf,
})

Implementation

DecryptedFlatRateTarification({
		String? code,
		FlatRateType? flatRateType,
		Map<String, String>? label,
		List<DecryptedValorisation>? valorisations,
		Base64String? encryptedSelf
	}) : code = code ?? null,
	flatRateType = flatRateType ?? null,
	label = label ?? null,
	valorisations = valorisations ?? [],
	encryptedSelf = encryptedSelf ?? null;