copyWith method
Creates a copy of this Typography with the given fields replaced by the non-null parameter values.
Implementation
Typography copyWith({
TextTheme? black,
TextTheme? white,
TextTheme? englishLike,
TextTheme? dense,
TextTheme? tall,
}) {
return Typography._(
black ?? this.black,
white ?? this.white,
englishLike ?? this.englishLike,
dense ?? this.dense,
tall ?? this.tall,
);
}