@override Future<String> get password async { var pss = await passwordStore.get('$scope.$key'); if (pss == null) { return await requestPassword(); } else { return pss; } }