copy method

Properties copy({
  1. Map<String, dynamic>? otherProperties,
})

Implementation

Properties copy({Map<String, dynamic>? otherProperties}) => Properties(
      otherProperties: otherProperties ?? this.otherProperties,
    );