copyWith method

Photos copyWith({
  1. String? title,
  2. String? url,
})

Implementation

Photos copyWith({  String? title,
  String? url,
}) => Photos(  title: title ?? _title,
  url: url ?? _url,
);