Callout.fromJson constructor

Callout.fromJson(
  1. Map json_
)

Implementation

Callout.fromJson(core.Map json_)
  : this(
      fullMessage: json_.containsKey('fullMessage')
          ? TextWithTooltip.fromJson(
              json_['fullMessage'] as core.Map<core.String, core.dynamic>,
            )
          : null,
      styleHint: json_['styleHint'] as core.String?,
    );