fromJson static method

SettingsSectionAppearance? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static SettingsSectionAppearance? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return SettingsSectionAppearance(
    subsection: (json['subsection'] as String?) ?? '',
  );
}