toJson method
Stable operation data used in migration checksums and reports.
Implementation
@override
Map<String, Object?> toJson() => {
'kind': 'checkedTableSql',
'sql': sql,
if (before != null) 'before': tableJson(before!),
if (after != null) 'after': tableJson(after!),
};