ChannelProfileWebWidgetConfig.fromJson constructor

ChannelProfileWebWidgetConfig.fromJson(
  1. Map json_
)

Implementation

ChannelProfileWebWidgetConfig.fromJson(core.Map json_)
  : this(
      modality: json_['modality'] as core.String?,
      securitySettings: json_.containsKey('securitySettings')
          ? ChannelProfileWebWidgetConfigSecuritySettings.fromJson(
              json_['securitySettings']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      theme: json_['theme'] as core.String?,
      webWidgetTitle: json_['webWidgetTitle'] as core.String?,
    );