RadioThemeData class

Defines the visual properties of Radio.

Descendant widgets obtain the current RadioThemeData object using RadioTheme.of(context). Instances of RadioThemeData can be customized with RadioThemeData.copyWith or RadioThemeData.merge.

Inheritance
Mixed in types
Implementers
Annotations

Constructors

RadioThemeData({required Curve curve, required Duration duration, required RadioStyle style})
Creates a theme data that can be used for RadioTheme.
const
RadioThemeData.defaults(BuildContext context)
A RadioThemeData with default values.
factory
RadioThemeData.from([RadioThemeData? other])
Creates a RadioThemeData from another one that probably null.
RadioThemeData.ios(BuildContext context)
A RadioThemeData with ios default values.
factory
RadioThemeData.m2(BuildContext context)
A RadioThemeData with material 2 default values.
factory
RadioThemeData.m3(BuildContext context)
A RadioThemeData with material 3 default values.
factory

Properties

curve Curve
The curve to apply when animating the parameters of radio widget.
final
duration Duration
The duration over which to animate the parameters of radio widget.
final
hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
style RadioStyle
The RadioStyle to be applied to the radio widget
final
type Object
The extension's type.
no setterinherited

Methods

copyWith({Curve? curve, Duration? duration, RadioStyle? style}) RadioThemeData
Creates a copy of this RadioThemeData but with the given fields replaced with the new values.
override
debugFillProperties(DiagnosticPropertiesBuilder properties) → void
Add additional properties associated with the node.
override
lerp(covariant ThemeExtension<RadioThemeData>? other, double t) RadioThemeData
Linearly interpolate with another ThemeExtension object.
override
merge(RadioThemeData? other) RadioThemeData
Creates a copy of this RadioThemeData but with the given fields replaced with the new values.
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toMap() Map<String, dynamic>
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) String
A string representation of this object.
inherited
toStringShort() String
A brief description of this object, usually just the runtimeType and the hashCode.
inherited

Operators

operator ==(Object other) bool
The equality operator.
override

Constants

fallback → const RadioThemeData
A RadioThemeData with some reasonable default values.