RestDescriptionEndpoints.fromJson constructor

RestDescriptionEndpoints.fromJson(
  1. Map json_
)

Implementation

RestDescriptionEndpoints.fromJson(core.Map json_)
    : this(
        deprecated: json_['deprecated'] as core.bool?,
        description: json_['description'] as core.String?,
        endpointUrl: json_['endpointUrl'] as core.String?,
        location: json_['location'] as core.String?,
      );