predatorStuffCompromise method

String? predatorStuffCompromise(
  1. String? text
)

Implementation

String? predatorStuffCompromise(String? text) {
  if (text == null || text.isEmpty) {
    return 'Password is required';
  }
  if (slumpLibertyLegend.value.text != licenseReceiptTactic.value.text) {
    return 'Make sure the password is the same.';
  }
  return null;
}