AFFormFactorSize constructor

const AFFormFactorSize({
  1. required String identifier,
  2. required double width,
  3. required double height,
})

Implementation

const AFFormFactorSize({
  required this.identifier,
  required this.width,
  required this.height,
});