AppSkin constructor
Implementation
AppSkin({
Key? key,
ColorsDelegate? colorsDelegate,
TextStylesDelegate? textStylesDelegate,
IconsDelegate? iconsDelegate,
ImagesDelegate? imagesDelegate,
FilesDelegate? filesDelegate,
DimensionsDelegate? dimensionsDelegate,
List<StyleDelegate<dynamic>>? styleDelegates,
required Widget child,
}) : colors = colorsDelegate ?? ColorsDelegate(),
textStyles = textStylesDelegate ?? TextStylesDelegate(),
icons = iconsDelegate ?? IconsDelegate(),
images = imagesDelegate ?? ImagesDelegate(),
files = filesDelegate ?? FilesDelegate(),
dimensions = dimensionsDelegate ?? DimensionsDelegate(),
styleDelegates = styleDelegates ?? [],
super(key: key, child: child);