input_credentials_apple_pay property

InputCredentialsApplePay get input_credentials_apple_pay

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

InputCredentialsApplePay get input_credentials_apple_pay {
  try {
    if (rawData["input_credentials_apple_pay"] is Map == false) {
      return InputCredentialsApplePay({});
    }
    return InputCredentialsApplePay(rawData["input_credentials_apple_pay"] as Map);
  } catch (e) {
    return InputCredentialsApplePay({});
  }
}
set input_credentials_apple_pay (InputCredentialsApplePay value)

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

set input_credentials_apple_pay(InputCredentialsApplePay value) {
  rawData["input_credentials_apple_pay"] = value.toJson();
}