IosIconSize constructor

const IosIconSize({
  1. required double size,
  2. List<int> multiple = const [1],
  3. String namePrev = 'icon-',
})

Implementation

const IosIconSize({
  required this.size,
  this.multiple = const [1],
  this.namePrev = 'icon-',
});