MessageSuggestProfilePhoto.fromJson constructor

MessageSuggestProfilePhoto.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

factory MessageSuggestProfilePhoto.fromJson(Map<String, dynamic> json) =>
    MessageSuggestProfilePhoto(
      photo: ChatPhoto.fromJson(json['photo']),
    );