PhotoId.fromJson constructor

PhotoId.fromJson(
  1. Map json_
)

Implementation

PhotoId.fromJson(core.Map json_)
    : this(
        id: json_['id'] as core.String?,
      );