isInline static method

bool isInline(
  1. dynamic node
)

Checks if the node is an instance of Inline

Implementation

static bool isInline(dynamic node) {
  return INLINES.fromValue(node['nodeType']) != null;
}