CustomImageConfig.fromJson constructor

CustomImageConfig.fromJson(
  1. Map json_
)

Implementation

CustomImageConfig.fromJson(core.Map json_)
  : this(
      image: json_['image'] as core.String?,
      imageProject: json_['imageProject'] as core.String?,
    );