Tag constructor

const Tag({
  1. Map<String, dynamic>? source,
  2. required String title,
})

Implementation

const Tag({
  Map<String, dynamic>? source,
  required this.title,
}) : super(source: source);