Link.fromJson constructor

Link.fromJson(
  1. Map json_
)

Implementation

Link.fromJson(core.Map json_)
  : this(
      thumbnailUrl: json_['thumbnailUrl'] as core.String?,
      title: json_['title'] as core.String?,
      url: json_['url'] as core.String?,
    );