copyWith method

Alignment copyWith({
  1. AlignmentType? type,
  2. String? description,
})

Implementation

Alignment copyWith({
  AlignmentType? type,
  String? description,
}) =>
    Alignment(
      meta: meta,
      type: type ?? this.type,
      description: description ?? this.description,
    );