getWidget method

Widget getWidget({
  1. BuildContext? context,
  2. double? size,
  3. Color? color,
  4. String? semanticLabel,
  5. bool icon = true,
  6. bool fixedSize = true,
})

Implementation

Widget getWidget({
  BuildContext? context,
  double? size,
  Color? color,
  String? semanticLabel,
  bool icon = true,
  bool fixedSize = true,
}) {
  return SizedBox(width: size, height: size);
}