equals method

  1. @override
bool? equals(
  1. WriteStep self,
  2. WriteStep other
)

Implementation

@override bool? equals(WriteStep self, WriteStep other) => Mapper.isEqual(self.file, other.file) && Mapper.isEqual(self.content, other.content) && Mapper.isEqual(self.writeMethod, other.writeMethod) && Mapper.isEqual(self.enabled, other.enabled) && Mapper.isEqual(self.extendAt, other.extendAt);