copyWith method

$FespSelectableTextBuilderData copyWith({
  1. String? text,
})

Implementation

$FespSelectableTextBuilderData copyWith({
  String? text,
}) {
  return $FespSelectableTextBuilderData(
    text: text ?? this.text,
  );
}