Input$CoinApiInput constructor

Input$CoinApiInput({
  1. Input$CoinApiMethodInput? push,
  2. Input$CoinApiMethodInput? deduct,
  3. Input$CoinApiCheckInput? check,
})

Implementation

factory Input$CoinApiInput({
  Input$CoinApiMethodInput? push,
  Input$CoinApiMethodInput? deduct,
  Input$CoinApiCheckInput? check,
}) =>
    Input$CoinApiInput._({
      if (push != null) r'push': push,
      if (deduct != null) r'deduct': deduct,
      if (check != null) r'check': check,
    });