copyWith method

SmartTextStyle copyWith({
  1. TextStyle? value,
})

Implementation

SmartTextStyle copyWith({TextStyle? value}) {
  return SmartTextStyle(value: value ?? this.value);
}