copy method

HeadingDivider copy({
  1. Color? color,
  2. double? space,
  3. double? height,
})

Implementation

HeadingDivider copy({Color? color, double? space, double? height}) =>
    HeadingDivider(
        color: color ?? this.color,
        space: space ?? this.space,
        height: height ?? this.height);