UserInfoRow constructor

const UserInfoRow(
  1. {Key? key,
  2. required IconData icon,
  3. required String label,
  4. required String? value,
  5. required String noValueFoundString,
  6. Widget? valueEditor,
  7. void onValueTappedCallback(
      )?}
    )

    Implementation

    const UserInfoRow({
      super.key,
      required this.icon,
      required this.label,
      required this.value,
      required this.noValueFoundString,
      this.valueEditor,
      this.onValueTappedCallback,
    });