Add missing expansionTileTheme theme copyWith test (#100165)

This commit is contained in:
Taha Tesser 2022-03-16 20:25:17 +02:00 committed by GitHub
parent 63ff7a199b
commit 1cd4eebf47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -612,6 +612,7 @@ void main() {
sliderTheme: otherTheme.sliderTheme,
tabBarTheme: otherTheme.tabBarTheme,
tooltipTheme: otherTheme.tooltipTheme,
expansionTileTheme: otherTheme.expansionTileTheme,
cardTheme: otherTheme.cardTheme,
chipTheme: otherTheme.chipTheme,
platform: otherTheme.platform,
@ -689,6 +690,7 @@ void main() {
expect(themeDataCopy.sliderTheme, equals(otherTheme.sliderTheme));
expect(themeDataCopy.tabBarTheme, equals(otherTheme.tabBarTheme));
expect(themeDataCopy.tooltipTheme, equals(otherTheme.tooltipTheme));
expect(themeDataCopy.expansionTileTheme, equals(otherTheme.expansionTileTheme));
expect(themeDataCopy.cardTheme, equals(otherTheme.cardTheme));
expect(themeDataCopy.chipTheme, equals(otherTheme.chipTheme));
expect(themeDataCopy.platform, equals(otherTheme.platform));