NavigationLookAndFeelHoverOrFocus.fromJson constructor
Implementation
factory NavigationLookAndFeelHoverOrFocus.fromJson(
Map<String, Object?> json) {
return NavigationLookAndFeelHoverOrFocus(
backgroundColor: json[r'backgroundColor'] as String? ?? '',
color: json[r'color'] as String? ?? '',
);
}