Image.fromJson constructor

Image.fromJson(
  1. Map json_
)

Implementation

Image.fromJson(core.Map json_)
  : this(
      imageUrl: json_['imageUrl'] as core.String?,
      status: json_['status'] as core.String?,
      type: json_['type'] as core.String?,
    );