merge method

ElButtonStyle merge([
  1. ElButtonStyle? other
])

Implementation

ElButtonStyle merge([ElButtonStyle? other]) {
  if (other == null) return this;
  return copyWith(
    boxStyle: other.boxStyle,
    textStyle: other.textStyle,
    iconThemeData: other.iconThemeData,
    block: other.block,
    skipTraversal: other.skipTraversal,
    cursor: other.cursor,
    loadingCursor: other.loadingCursor,
    disabledCursor: other.disabledCursor,
  );
}