updateCompanyInfo method

void updateCompanyInfo({
  1. String? cif,
  2. String? name,
  3. String? address,
})

Implementation

void updateCompanyInfo({
  String? cif,
  String? name,
  String? address,
}) {
  emit(state.copyWith(
    companyCif: cif,
    companyName: name,
    companyAddress: address,
  ));
}