create static method

TextQuote create({
  1. bool schemeUtilsIsSetDefaultData = false,
  2. String special_type = "textQuote",
  3. String special_return_type = "textQuote",
  4. FormattedText? text,
  5. num? position,
  6. bool? is_manual,
})
override

Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual

Implementation

static TextQuote create({
  bool schemeUtilsIsSetDefaultData = false,
  String special_type = "textQuote",
  String special_return_type = "textQuote",
  FormattedText? text,
  num? position,
  bool? is_manual,
}) {
  // TextQuote textQuote = TextQuote({
  final Map textQuote_data_create_json = {
    "@type": special_type,
    "@return_type": special_return_type,
    "text": (text != null) ? text.toJson() : null,
    "position": position,
    "is_manual": is_manual,
  };

  textQuote_data_create_json.removeWhere((key, value) => value == null);

  if (schemeUtilsIsSetDefaultData) {
    defaultData.forEach((key, value) {
      if (textQuote_data_create_json.containsKey(key) == false) {
        textQuote_data_create_json[key] = value;
      }
    });
  }
  return TextQuote(textQuote_data_create_json);
}