TransferIcon constructor

const TransferIcon({
  1. Key? key,
  2. double size = 32,
  3. TransferIconType type = TransferIconType.rollIn,
  4. Color bgColor = const Color(0xFFE9E9E9),
  5. Color? iconColor,
  6. Color? darkBgColor = const Color(0xFF494a4c),
})

Implementation

const TransferIcon(
    {Key? key,
    this.size = 32,
    this.type = TransferIconType.rollIn,
    this.bgColor = const Color(0xFFE9E9E9),
    this.iconColor,
    this.darkBgColor = const Color(0xFF494a4c)})
    : super(key: key);