TopNavigationLookAndFeelHoverOrFocus.fromJson constructor

TopNavigationLookAndFeelHoverOrFocus.fromJson(
  1. Map<String, Object?> json
)

Implementation

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