CropPropertiesSuggestionState.fromJson constructor

CropPropertiesSuggestionState.fromJson(
  1. Map json_
)

Implementation

CropPropertiesSuggestionState.fromJson(core.Map json_)
  : this(
      angleSuggested: json_['angleSuggested'] as core.bool?,
      offsetBottomSuggested: json_['offsetBottomSuggested'] as core.bool?,
      offsetLeftSuggested: json_['offsetLeftSuggested'] as core.bool?,
      offsetRightSuggested: json_['offsetRightSuggested'] as core.bool?,
      offsetTopSuggested: json_['offsetTopSuggested'] as core.bool?,
    );