NomoOutlineContainerThemeData.from constructor

NomoOutlineContainerThemeData.from(
  1. NomoOutlineContainerColorData colors,
  2. NomoOutlineContainerSizingData sizing,
  3. NomoOutlineContainerConstants constants
)

Implementation

factory NomoOutlineContainerThemeData.from(
  NomoOutlineContainerColorData colors,
  NomoOutlineContainerSizingData sizing,
  NomoOutlineContainerConstants constants,
) {
  return NomoOutlineContainerThemeData(
    foreground: colors.foreground,
    background: colors.background,
    shape: colors.shape,
    border: colors.border,
    padding: sizing.padding,
    spacing: sizing.spacing,
  );
}