copyrightAlignment property
      
      Alignment
      get
      copyrightAlignment
      
    
    
Позиция копирайта на экране.
Implementation
Alignment get copyrightAlignment =>
    _copyrightWidgetController.copyrightAlignment.value.alignment;
      
      set
      copyrightAlignment
      (Alignment value) 
      
    
    
    
Implementation
set copyrightAlignment(Alignment value) {
  _copyrightWidgetController.copyrightAlignment.value =
      _copyrightWidgetController.copyrightAlignment.value
          .copyWith(alignment: value);
}