copyWith method

LoginButtonThemeData copyWith({
  1. double? elevation,
  2. ShapeBorder? shapeBorder,
})

Implementation

LoginButtonThemeData copyWith({
  double? elevation,
  ShapeBorder? shapeBorder,
}) {
  return LoginButtonThemeData(
    elevation: elevation ?? this.elevation,
    borderShape: shapeBorder ?? borderShape,
  );
}