copyWith method
Implementation
MiniTypographyTokens copyWith({
TextStyle? body,
TextStyle? small,
TextStyle? title,
TextStyle? heading,
}) {
return MiniTypographyTokens(
body: body ?? this.body,
small: small ?? this.small,
title: title ?? this.title,
heading: heading ?? this.heading,
);
}