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