setTempPassword method

  1. @override
Future<String> setTempPassword(
  1. String? correlationId,
  2. String userId
)
override

Sets a temporary password.

  • correlationId (optional) transaction id to trace execution through call chain.
  • userId an id of password to be set. Return Future that receives string temp password.

Implementation

@override
Future<String> setTempPassword(String? correlationId, String userId) async {
  return '123';
}