NextAction.wechatPayRedirect constructor

  1. @JsonSerializable(explicitToJson: true)
  2. @FreezedUnionValue('weChatRedirect')
const NextAction.wechatPayRedirect({
  1. String? redirectUrl,
})

Contains the url for the wechat redirect QR code

Implementation

@JsonSerializable(explicitToJson: true)
@FreezedUnionValue('weChatRedirect')
const factory NextAction.wechatPayRedirect({
  /// Url to the Qr code.
  String? redirectUrl,
}) = _NextActionWeChatRedirect;