customer_required property

bool? get customer_required

Implementation

bool? get customer_required {
  try {
    if (rawData["customer_required"] is bool == false){
      return null;
    }
    return rawData["customer_required"] as bool;
  } catch (e) {
    return null;
  }
}