copyWith method

ExtendedTheme copyWith({
  1. ThemeData? material,
  2. CupertinoThemeData? cupertino,
})

Implementation

ExtendedTheme copyWith({
  ThemeData? material,
  CupertinoThemeData? cupertino,
}) {
  return ExtendedTheme(
    material: material ?? this.material,
    cupertino: cupertino ?? this.cupertino,
  );
}