VideoAbuseReportSecondaryReason.fromJson constructor

VideoAbuseReportSecondaryReason.fromJson(
  1. Map json_
)

Implementation

VideoAbuseReportSecondaryReason.fromJson(core.Map json_)
    : this(
        id: json_.containsKey('id') ? json_['id'] as core.String : null,
        label:
            json_.containsKey('label') ? json_['label'] as core.String : null,
      );