ComplyWithGuidelines.fromJson constructor

ComplyWithGuidelines.fromJson(
  1. Map json_
)

Implementation

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