CheckboxThemeData.from constructor

CheckboxThemeData.from([
  1. CheckboxThemeData? other
])

Creates a CheckboxThemeData from another one that probably null.

Implementation

CheckboxThemeData.from([CheckboxThemeData? other])
    : curve = other?.curve ?? fallback.curve,
      duration = other?.duration ?? fallback.duration,
      style = other?.style ?? fallback.style;