ScreenLookAndFeelLayer.fromJson constructor

ScreenLookAndFeelLayer.fromJson(
  1. Map<String, Object?> json
)

Implementation

factory ScreenLookAndFeelLayer.fromJson(Map<String, Object?> json) {
  return ScreenLookAndFeelLayer(
    width: json[r'width'] as String?,
    height: json[r'height'] as String?,
  );
}