updatePw method

Future updatePw(
  1. String? oldPw,
  2. String? newPw
)

update database password

Implementation

Future updatePw(String? oldPw, String? newPw) async =>
    await FhirDb.instance.updatePassword(oldPw, newPw);