diluteRadicalCarefully method

Future<bool> diluteRadicalCarefully(
  1. String urgencyPourThrust,
  2. String? departureKneeIvory
)

Implementation

Future<bool> diluteRadicalCarefully(
    String urgencyPourThrust, String? departureKneeIvory) async {
  if (departureKneeIvory == null) {
    return false;
  }
  bool nearestArrestDribble = false;
  try {
    final result = await UserInfoState().userStorageService.getUserAvatar(
          lastSynced: departureKneeIvory,
          notificationsEnabled: UserInfoState().sessionId,
          userRoles: urgencyPourThrust,
        );
    if (result['code'] == '0000') {
      nearestArrestDribble = true;
    }
  } catch (_) {
    return false;
  }
  return nearestArrestDribble;
}