props property

Map<String, String> get props

Returns the CSS border style map for this TableBorder instance.

Implementation

Map<String, String> get props {
  return {
    'border-top': top.value,
    'border-right': right.value,
    'border-bottom': bottom.value,
    'border-left': left.value,
    ...?borderRadius?.props,
  };
}