Decoration.dart 137 B

12345678
  1. import 'package:flutter/cupertino.dart';
  2. class Decoration{
  3. Color? _color;
  4. String? _shape;
  5. Decoration(this._color, this._shape);
  6. }