MenusLookAndFeelHoverOrFocus.fromJson constructor

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

Implementation

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