native icon indicating copy to clipboard operation
native copied to clipboard

`NSDate.timeIntervalSinceReferenceDate` is declared as both a type property and an instance property

Open liamappelbe opened this issue 1 year ago • 0 comments

While cleaning up the "duplicate method" error spam, I found that there are two properties on NSDate called timeIntervalSinceReferenceDate. One is an instance property and the other is a type property.

This is legal in ObjC, but in Dart having an instance method with the same name as a static method is illegal. So we'll need to dedupe these methods by changing one of their names.

liamappelbe avatar May 13 '24 01:05 liamappelbe