Input$CurrencyInput constructor

Input$CurrencyInput({
  1. required String name,
  2. String? code,
  3. String? symbol,
  4. Input$PictureInput? flagSquare,
  5. Input$PictureInput? flagWide,
  6. String? iconFlag,
})

Implementation

factory Input$CurrencyInput({
  required String name,
  String? code,
  String? symbol,
  Input$PictureInput? flagSquare,
  Input$PictureInput? flagWide,
  String? iconFlag,
}) =>
    Input$CurrencyInput._({
      r'name': name,
      if (code != null) r'code': code,
      if (symbol != null) r'symbol': symbol,
      if (flagSquare != null) r'flagSquare': flagSquare,
      if (flagWide != null) r'flagWide': flagWide,
      if (iconFlag != null) r'iconFlag': iconFlag,
    });