NullableXmlSerializableXmlElementConstructorGenerator constructor

const NullableXmlSerializableXmlElementConstructorGenerator(
  1. String name, {
  2. String? namespace,
  3. bool? isSelfClosing,
  4. bool? includeIfNull,
})

Implementation

const NullableXmlSerializableXmlElementConstructorGenerator(
  String name, {
  String? namespace,
  bool? isSelfClosing,
  bool? includeIfNull,
}) : super(
        name,
        namespace: namespace,
        isSelfClosing: isSelfClosing,
        includeIfNull: includeIfNull,
        isNullable: true,
      );