BatchDeletePhotosResponse.fromJson constructor

BatchDeletePhotosResponse.fromJson(
  1. Map json_
)

Implementation

BatchDeletePhotosResponse.fromJson(core.Map json_)
    : this(
        status: (json_['status'] as core.List?)
            ?.map((value) =>
                Status.fromJson(value as core.Map<core.String, core.dynamic>))
            .toList(),
      );