UpdateUserPhone constructor

const UpdateUserPhone({
  1. required int userId,
  2. required String phone,
})

Update User Phone constructor.

Implementation

const UpdateUserPhone({required this.userId, required this.phone})
    : super._();