FTimeFieldStyle.inherit constructor

FTimeFieldStyle.inherit({
  1. required FColors colors,
  2. required FTypography typography,
  3. required FStyle style,
})

Creates a FTimeFieldStyle that inherits its properties.

Implementation

FTimeFieldStyle.inherit({required FColors colors, required FTypography typography, required FStyle style})
  : this(
      fieldStyle: .inherit(colors: colors, typography: typography, style: style),
      popoverStyle: .inherit(colors: colors, style: style),
      pickerStyle: .inherit(colors: colors, typography: typography, style: style),
    );