Copyright constructor

Copyright({
  1. String author = '',
  2. int? year,
  3. String? license,
})

Construct a new Copyright with author, year and license.

Implementation

Copyright({this.author = '', this.year, this.license});