ConferenceSolution.fromJson constructor

ConferenceSolution.fromJson(
  1. Map json_
)

Implementation

ConferenceSolution.fromJson(core.Map json_)
    : this(
        iconUri: json_.containsKey('iconUri')
            ? json_['iconUri'] as core.String
            : null,
        key: json_.containsKey('key')
            ? ConferenceSolutionKey.fromJson(
                json_['key'] as core.Map<core.String, core.dynamic>)
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );