Reformat code

pull/13/head
singerdmx 4 years ago
parent 12b98a8a0d
commit 1486e5dcae
  1. 4
      lib/models/documents/document.dart

@ -175,8 +175,8 @@ class Document {
res.push(op); res.push(op);
bool nextOpIsImage = i + 1 < ops.length && bool nextOpIsImage = i + 1 < ops.length &&
ops[i + 1].isInsert && ops[i + 1].isInsert &&
ops[i + 1].data is !String; ops[i + 1].data is! String;
if (nextOpIsImage && !(op.data as String).endsWith('\n')){ if (nextOpIsImage && !(op.data as String).endsWith('\n')) {
res.push(Operation.insert('\n', null)); res.push(Operation.insert('\n', null));
} }
// Currently embed is equivalent to image and hence `is! String` // Currently embed is equivalent to image and hence `is! String`

Loading…
Cancel
Save