FittorCode constructor
const
FittorCode({})
Implementation
const FittorCode({
super.key,
required this.code,
this.title,
this.language = 'dart',
this.launch,
this.url,
this.onLaunch,
}) : assert(
launch != true || onLaunch != null,
'When launch is true, onLaunch callback must be provided',
);