Challenge.fromJson constructor

Challenge.fromJson(
  1. Map json_
)

Implementation

Challenge.fromJson(core.Map json_)
    : this(
        challenge: json_.containsKey('challenge')
            ? json_['challenge'] as core.String
            : null,
      );