formatSqlIfAvailable method

String? formatSqlIfAvailable(
  1. MoorOptions options
)

Implementation

String? formatSqlIfAvailable(MoorOptions options) {
  final $this = this;
  if ($this is MoorDeclaration) {
    return $this.exportSql(options);
  }

  return null;
}