proxibuy/lib/core/utils/empty_space.dart

8 lines
173 B
Dart

import 'package:flutter/material.dart';
extension EmptySpace on num {
SizedBox get h => SizedBox(height: toDouble());
SizedBox get w => SizedBox(width: toDouble());
}