ListTransformationsResponse.fromJson constructor

ListTransformationsResponse.fromJson(
  1. Map json_
)

Implementation

ListTransformationsResponse.fromJson(core.Map json_)
    : this(
        nextPageToken: json_.containsKey('nextPageToken')
            ? json_['nextPageToken'] as core.String
            : null,
        transformation: json_.containsKey('transformation')
            ? (json_['transformation'] as core.List)
                .map((value) => Transformation.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );