NomoInfoItemThemeData.from constructor

NomoInfoItemThemeData.from(
  1. NomoInfoItemColorData colors,
  2. NomoInfoItemSizingData sizing,
  3. NomoInfoItemConstants constants
)

Implementation

factory NomoInfoItemThemeData.from(
  NomoInfoItemColorData colors,
  NomoInfoItemSizingData sizing,
  NomoInfoItemConstants constants,
) {
  return NomoInfoItemThemeData(
    padding: sizing.padding,
    titleStyle: constants.titleStyle,
    valueStyle: constants.valueStyle,
  );
}