buildForm method
Implementation
@mustBeOverridden
j.JobBody buildForm(BuildContext context) {
// this is a debug no impl error that is shown to alert developers that this part of the code is unfinished
//
// so pls reimpl this (also dont call super if you do)
return j.JobBody(onRemoveJob: IGNORE_INVOKE, children: <Widget>[
Container(
decoration: BoxDecoration(
color: kTheme1, borderRadius: BorderRadius.circular(kRRArc)),
padding: const EdgeInsets.all(8),
child: Center(
child: Text.rich(TextSpan(
text:
">>> ${Provider.of<InternationalizationNotifier>(context).i18n.appGenerics.no_impl} <<<\n",
children: <InlineSpan>[
const WidgetSpan(child: Icon(Ionicons.code_slash)),
TextSpan(
text: "\t$runtimeType#$hashCode",
style: const TextStyle(fontWeight: FontWeight.normal))
])))),
]);
}