NomoNotificationThemeData.from constructor
NomoNotificationThemeData.from(
- NomoNotificationColorData colors,
- NomoNotificationSizingData sizing,
- NomoNotificationConstants constants
Implementation
factory NomoNotificationThemeData.from(
NomoNotificationColorData colors,
NomoNotificationSizingData sizing,
NomoNotificationConstants constants,
) {
return NomoNotificationThemeData(
backgroundColor: colors.backgroundColor,
foregroundColor: colors.foregroundColor,
padding: sizing.padding,
borderRadius: sizing.borderRadius,
spacing: sizing.spacing,
maxWidth: sizing.maxWidth,
);
}