FontSize constructor

const FontSize({
  1. required int width,
  2. required int height,
})

Implementation

const FontSize({required this.width, required this.height})
    : assert(width > -1 && width < 8),
      assert(height > -1 && height < 8);