copyWith method
ZeroSkeletonStyleSet
copyWith({
- SkeletonAvatarStyle? avatar,
- SkeletonLineStyle? line,
- SkeletonListTileStyle? listTile,
- SkeletonParagraphStyle? paragraph,
Implementation
ZeroSkeletonStyleSet copyWith({
SkeletonAvatarStyle? avatar,
SkeletonLineStyle? line,
SkeletonListTileStyle? listTile,
SkeletonParagraphStyle? paragraph,
}) =>
ZeroSkeletonStyleSet(
avatar: avatar ?? this.avatar,
line: line ?? this.line,
listTile: listTile ?? this.listTile,
paragraph: paragraph ?? this.paragraph,
);