BorderBottom constructor

BorderBottom({
  1. String? type,
  2. String? color,
  3. int? size,
  4. int? opacity,
})

Implementation

BorderBottom({
  String? type,
  String? color,
  int? size,
  int? opacity,
}) {
  _type = type;
  _color = color;
  _size = size;
  _opacity = opacity;
}