copyWith method

GetMenuButton copyWith({
  1. int? userId,
})

Implementation

GetMenuButton copyWith({
  int? userId,
}) =>
    GetMenuButton(
      userId: userId ?? this.userId,
    );