-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
22 changed files
with
497 additions
and
255 deletions.
There are no files selected for viewing
10 changes: 9 additions & 1 deletion
10
...kages/flutter_inappwebview_internal_annotations/lib/src/exchangeable_object_property.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,17 @@ | ||
class ExchangeableObjectProperty { | ||
final Function? serializer; | ||
final Function? deserializer; | ||
final bool deprecatedUseNewFieldNameInConstructor; | ||
final bool deprecatedUseNewFieldNameInFromMapMethod; | ||
final bool leaveDeprecatedInFromMapMethod; | ||
final bool leaveDeprecatedInToMapMethod; | ||
|
||
const ExchangeableObjectProperty({ | ||
this.serializer, | ||
this.deserializer | ||
this.deserializer, | ||
this.deprecatedUseNewFieldNameInConstructor = true, | ||
this.deprecatedUseNewFieldNameInFromMapMethod = true, | ||
this.leaveDeprecatedInFromMapMethod = false, | ||
this.leaveDeprecatedInToMapMethod = false, | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.