Separator constructor

Separator({
  1. EdgeInsetsGeometry? margin,
  2. double? height = 0.5,
  3. Color? color = CupertinoColors.separator,
})

Implementation

Separator({
  this.margin,
  this.height = 0.5,
  this.color = CupertinoColors.separator,
});