operator + method
Implementation
@override
LayoutIN operator +(LayoutIN operand) {
return LayoutIN().copy(this)
..width = this().width != null ? this().width! + (operand().width ?? this().width!) : null
..height = this().height != null ? this().height! + (operand().height ?? this().height!) : null
..widthFactor = this().widthFactor + operand().widthFactor
..heightFactor = this().heightFactor + operand().heightFactor
..alignment = this().alignment != null ? this().alignment! + (operand().alignment ?? this().alignment!) : null
..padding = this().padding + operand().padding
..margin = this().margin + operand().margin;
}