Input$CurrencyInput constructor
Input$CurrencyInput({
- required String name,
- String? code,
- String? symbol,
- Input$PictureInput? flagSquare,
- Input$PictureInput? flagWide,
- 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,
});