EndPoint.fromJson constructor

EndPoint.fromJson(
  1. Map json_
)

Implementation

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