VtTerminalScrollbar.fromNative constructor

VtTerminalScrollbar.fromNative(
  1. GhosttyTerminalScrollbar native
)

Implementation

factory VtTerminalScrollbar.fromNative(
  bindings.GhosttyTerminalScrollbar native,
) {
  return VtTerminalScrollbar(
    total: native.total,
    offset: native.offset,
    length: native.len,
  );
}