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